Which of the following would not be an alternate way to write the remove() method for an arrayBag as implemented in the course?
a) Remove an element by shifting all subsequent elements.
b) Remove an element by replacing it with the last element.
c) Remove an element by setting it to null.
d) Remove an element by decrementing the size counter.