Multiple choice

The process of visiting each element of the array exactly once is called

  1. analysis traversal operation

  2. traversal operation

  3. search operation

  4. linear search operation

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

Traversal is the process of systematically visiting each element in a data structure exactly once. This fundamental operation is essential for accessing, processing, or analyzing every element in an array, linked list, tree, or other data structure. It forms the basis for many algorithms including searching, sorting, and counting operations.