Multiple choice technology web technology Difference between Vector and ArrayList? Vector is synchronized whereas arraylist is not ArrayList is synchronized whereas Vector is not Both are same None of the Above Reveal answer Fill a bubble to check yourself A Correct answer Explanation Vector is a legacy Java collection class that is synchronized (thread-safe), whereas ArrayList is not synchronized, making ArrayList faster but not safe for unsynchronized multi-threaded access.