Multiple choice technology architecture

Finding the location of the element with a given value is:

  1. Traversal

  2. Search

  3. Sort

  4. None of above

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

Search is the operation of locating a specific element with a given value within a data structure. While traversal visits every element, search focuses on finding particular targets, using algorithms like linear search or binary search to efficiently locate the desired value.