CUET-UG SERIES
Computer-science

Searching

6 previous year questions.

Volume: 6 Ques
Yield: Medium

High-Yield Trend

3
2024
3
2023

Chapter Questions
6 MCQs

01
PYQ 2023
medium
computer-science ID: cuet-ug-
Locating a particular element in a collection of elements is called ______.
1
Sorting
2
Searching
3
Ordering
4
Hashing
02
PYQ 2023
medium
computer-science ID: cuet-ug-
Each element in the list is compared one by one with key is called _____.
1
Binary Search
2
Linear Search
3
Searching
4
Sorting
03
PYQ 2023
medium
computer-science ID: cuet-ug-
Serial search or sequential search are also known as _____.
1
Linear Search
2
Binary Search
3
Quick Sort
4
Bubble Sort
04
PYQ 2024
medium
computer-science ID: cuet-ug-
How many minimum number of comparisons are required to search an element from 'n' elements in Linear Search?
1
1
2
n - 1
3
n
4
n + 1
05
PYQ 2024
medium
computer-science ID: cuet-ug-

Arrange the following in the ascending order of their time complexity.
(A) Worst Case of Linear Search
(B) Best Case of Binary Search
(C) Worst Case of Binary Search
(D) Worst Case of Bubble Sort
Choose the correct sequence from the options given below:

1
(A), (B), (C), (D)
2
(B), (D), (A), (C)
3
(B), (A), (C), (D)
4
(B), (C), (A), (D)
06
PYQ 2024
medium
computer-science ID: cuet-ug-
Choose the statements that are correct.
Options:
(A) For Binary Search, all the elements have to be sorted.
(B) For Linear Search, all the elements have to be sorted.
(C) Linear Search takes less time for searching in worst case than binary search’s worst case.
(D) Linear Search always gives fast result whether elements are sorted or not.
Choose the correct answer from the options given below:
1
(A) only
2
(A) and (C) only
3
(B) and (C) only
4
(A), (B), and (D) only