PYQBOOK
Filter Questions
Found 475 question(s)
Q66
MCQ
CUET-PG
COMPUTER SCIENCE (MCA)
Easy
4 Marks
2025
Programming & Data Structures → Searching algorithms
In _____, the search time is independent of the number of elements n.
Q67
MCQ
CUET-PG
COMPUTER SCIENCE (MCA)
Easy
4 Marks
2025
Programming & Data Structures → Searching algorithms
All the elements that hash to the same slot are placed into the same linked list in:
Q68
MCQ
CUET-PG
COMPUTER SCIENCE (MCA)
Easy
4 Marks
2025
Programming & Data Structures → Sorting algorithms
The Quicksort and randomized Quicksort procedures differ in:
Q69
MCQ
CUET-PG
COMPUTER SCIENCE (MCA)
Medium
4 Marks
2025
Programming & Data Structures → Time & space complexity
Match Algorithm with Recurrence relation: (A) Binary Search (B) Merge Sort (C) Quick sort (worst case) (D) Linear Search with (I) T(n)=T(n/2)+c (II) T(n)=2T(n/2)+Theta(n) (III) T(n)=T(n-1)+Theta(n) (IV) T(n)=T(n-1)+c.
Q70
MCQ
CUET-PG
COMPUTER SCIENCE (MCA)
Medium
4 Marks
2025
Programming & Data Structures → Time & space complexity