🎴 Flashcard Mode
Computer (Data Structure & Algorithms) 3
Card1 / 25
Mastered0
Review0
QuestionClick to flip
The process of visiting each element of the array exactly once is called
AnswerClick to flip back
A
traversal operation
💡 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.