Multiple choice

The operation of adding an element to existing list of elements is called

  1. insert operation

  2. analysis of binary search

  3. sorted operation

  4. none of these

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

Insert operation adds a new element to an existing list or data structure. This operation requires placing the new element in the appropriate position while maintaining the structure's properties. In arrays, insertion may require shifting elements, while linked lists can insert efficiently at any position.