Multiple choice

The process of arranging the element of the array in some logical order is called

  1. delete operation

  2. sort operation

  3. insert operation

  4. none of these

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

Sort operation arranges array elements in a logical order (ascending or descending). This fundamental operation organizes data for efficient searching, analysis, and display. Common sorting algorithms include bubble sort, quick sort, and merge sort, each with different time and space complexity characteristics.