Q. In Ruby, Array index -1 represent ______.
β
Correct Answer: (B)
Last element
Explanation: A negative index is assumed relative to the end of the array --- that is, an index of -1 indicates the last element of the array, -2 is the next to last element in the array, and so on.