(Choose 1 answer)
In Java, which of the following methods of the Collections class can be used to find the largest value in a Vector?
A. Collections.max(Collection<T> col)
B. Collections.maxValue(Collection<T> col)
C. Collections.maxElement(Collection<T> col)
D. We don't need any method because elements in Vector are automatically sorted. Therefore, the first element contains the maximum value.
Exit (47