CUET PG MCA Data Structures Previous Year Questions (PYQs) – Page 1 of 4

CUET PG MCA Data Structures Previous Year Questions (PYQs) – Page 1 of 4

A Place for Latest Exam wise Questions, Videos, Previous Year Papers,
Study Stuff for MCA Examinations
logo

Which of the following is not an application of DFS?

1
2
3
4

logo

In a binary search tree, the worst case time complexity of inserting and deleting a key is:

1
2
3
4

logo

In __________the search time is independent of the number of elements n.

1
2
3
4

logo

The statements of pseudocode for searching the first element with key k in the linked list L are given below. 
Arrange them in the correct order. 

(A) while (x!=NIL and x.key != k) 

(B) x=L.head 

(C) x=x.next 

(D) return x 

Choose the correct answer from the options given below: 

1
2
3
4

logo

Arrange the following time complexities in increasing order.
(A). Bubble sort (worst case) 

(B). Deleting head node in singly linked list 

(C). Binary search 

(D). Worst case of merge sort 

Choose the correct answer from the options given below: 
1. (A), (B), (C), (D) 
2. (B), (C), (D), (A) 
3. (B), (A), (D), (C) 
4. (C), (B), (D), (A)

1
2
3
4

logo

The Quicksort and randomized Quicksort procedures differ in: 
1. Selection of Pivot element 
2. Worst case time complexity 
3. Best case time Complexity 
4. Final Output

1
2
3
4

logo

In case of Binary search tree which of the following procedure's running time is distinct among all 

1. TREE-SUCCESSOR (finds successor of the given node) 
2. TREE-MAXIMUM (finds the node with maximum value) 
3. INORDER- WALK (prints all elements of a tree in inorder manner) 
4. TREE-MINIMUM (finds the node with minimum value)

1
2
3
4

logo

Match List-I with List-II
 List-I List-II
 (Algorithm/ Application) (Data Structure Used)
 (A). BFS (1). Stack
 (B). DFS (II). B Trees
 (C). Heap sort (III). Priority Queue
 (D). Storage on secondary storages devices (IV). Queue
Choose the correct answer from the options given below:

1. (A) - (IV), (B)-(I), (C)-(III), (D) - (II) 
2. (A)-(I), (B)-(III), (C)-(II), (D-(IV) 
3. (A)-(I), (B)-(II), (C) - (IV), (D) (III) 
4.(A)-(II), (B)-(IV), (C)-(I) (D)-(II)

1
2
3
4

logo

Given the index i of a node in a heap, we can not compute: 
1. Parent () 
2. Heap size 
3. Left (i) 
4. Right (i)

1
2
3
4

logo

All the elements that hash to the same slot are placed into the same linked list in : 
1. Universal hashing 
2. Linear Probing 
3. Quadratic probing 
4. Chaining

1
2
3
4

CUET PG MCA


Online Test Series,
Information About Examination,
Syllabus, Notification
and More.

Click Here to
View More

CUET PG MCA


Online Test Series,
Information About Examination,
Syllabus, Notification
and More.

Click Here to
View More

Ask Your Question or Put Your Review.

loading...