recategorized by
406 views

1 Answer

0 votes
0 votes
Finding the location of the element with a given value is called a search.

The operation of processing each element in the list is known as traversal.

So, the correct answer is $(B).$
Answer:

Related questions

1 votes
1 votes
1 answer
2
gatecse asked Dec 9, 2020
668 views
Which of the following is a correct time complexity to solve the $0/1$ knapsack problem where $n$ and $w$ represents the number of items and capacity of knapsack respecti...
1 votes
1 votes
1 answer
3
gatecse asked Dec 9, 2020
628 views
Which of the following algorithms can be used to most efficiently find whether a cycle is present in a given graph?Prim’s Minimum Spanning Tree AlgorithmBreadth First S...
1 votes
1 votes
2 answers
4
gatecse asked Dec 9, 2020
524 views
Which of the following is correct recurrence for worst case of QuickSort?$T(n)=T(n-4)+T(n-2)+O(1)$$T(n)=T(n-1)+T(0)+O(n)$$T(n)=2T(n/2)+O(n)$$T(n)=4T(n/2)+O(n)$