Multiple choice technology programming languages

Which operation is faster?

  1. Array

  2. Vector

  3. List

  4. Pointers

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Arrays offer direct, contiguous memory allocation and index-based access without the overhead of synchronization (like Vector) or node traversal (like List), making basic operations faster.