CUET-PG SERIES
Data-science

Data Structures And Algorithms

7 previous year questions.

Volume: 7 Ques
Yield: Medium

High-Yield Trend

3
2026
4
2025

Chapter Questions
7 MCQs

01
PYQ 2025
medium
data-science ID: cuet-pg-

Consider the binary tree given below. What will be the corresponding infix expression to this?

1
((a + b + c * d) % (f \^ g) / (g - h))
2
(a - b) - (c * d) % ((f \^ i) + (g / h))
3
((a + b) - (c * d)) % ((f \^ g) / (h - i))
4
((a + b) - (c * d)) / ((f \^ g) / (h - i))
02
PYQ 2025
medium
data-science ID: cuet-pg-

Consider the following statements about arrays. Which of the following are TRUE?

A. The index specifies an offset from the beginning of the array to the element being referenced.
B. Declaring an array means specifying three parameters; data type, name, and its size.
C. The length of an array is given by the number of elements stored in it.
D. The name of an array is a symbolic reference to the address of the first byte of the array.
Choose the correct answer from the options given below:

1
A, B and C only
2
A, B and C only
3
B, D and A only
4
A, B, C and D
03
PYQ 2025
medium
data-science ID: cuet-pg-

Match LIST-I with LIST-II

Choose the correct answer from the options given below:

1
A - I, B - II, C - III, D - IV
2
A - I, B - III, C - II, D - IV
3
A - I, B - II, C - IV, D - III
4
A - III, B - I, C - D, I - II
04
PYQ 2025
medium
data-science ID: cuet-pg-

refers to a set of data values and associated operations that are specified accurately, independent of any particular implementation.

1
Data Structure
2
Abstract Data Type
3
Data Type
4
Array
05
PYQ 2026
medium
data-science ID: cuet-pg-
In a Binary Search Tree, which traversal method produces the elements in non-decreasing order?
1
Preorder Traversal
2
Inorder Traversal
3
Postorder Traversal
4
Level Order Traversal
06
PYQ 2026
medium
data-science ID: cuet-pg-
Which data structure is used by the system to implement recursion?
1
Queue
2
Stack
3
Linked List
4
Heap
07
PYQ 2026
medium
data-science ID: cuet-pg-
What is the time complexity of building a heap from an unsorted array of size ?
1

2

3

4