Is Array operations are faster than Vector.
B
Correct answer
Explanation
Array operations are faster than Vector because arrays are fixed-size, lightweight data structures with no synchronization overhead. Vector is a synchronized, thread-safe legacy class that acquires locks for every operation, making it slower even in single-threaded contexts.