Multiple choice Which of the following is false about vector class in java collection framework? Vector is not synchronized. Vector can be resized the array as needed. Vector gives costlier performance as compared to ArrayList. Vector is also called dynamic array. None of the above Reveal answer Fill a bubble to check yourself A Correct answer Explanation This is a false statement as Vector is synchronized and can be used for thread safe operation.