This quiz, titled '15IT32C - Data Structures and Algorithms', assesses key skills in identifying and understanding different data structures and their operations. It covers topics such as linear and non-linear structures, traversal, search operations, and optimal uses of arrays and linked lists.
Trees
Graphs
Arrays
None of above
Rate this question:
Queue
Stack
Tree
Linked List
Rate this question:
Traversal
Search
Sort
None of above
Rate this question:
Stack data structure can be implemented using linked list
New node can only be added at the top of the stack
Stack is the FIFO data structure
The last node at the bottom of the stack has a NULL link
Rate this question:
Arrays
Linked lists
Both of above
None of above
Rate this question:
Arrays
Linked lists
Both of above
None of above
Rate this question:
Sorting
Merging
Inserting
Traversal
Rate this question:
FIFO lists
LIFO list
Piles
Push-down lists
Rate this question:
Floor address
Foundation address
First address
Base address
Rate this question:
Front = 2 rear = 5 queue = ______; L, M, N, O, ___
Front = 3 rear = 5 queue = L, M, N, O, ___
Front = 3 rear = 4 queue = ______; L, M, N, O, ___
Front = 2 rear = 4 queue = L, M, N, O, ___
Rate this question:
Stack
Queue
Array
Tree
Rate this question:
For relatively permanent collections of data
For the size of the structure and the data in the structure are constantly changing
For both of above situation
For none of above situation
Rate this question:
At the head of link list
At the tail of the link list
At the center position in the link list
None
Rate this question:
For relatively permanent collections of data
For the size of the structure and the data in the structure are constantly changing
For both of above situation
For none of above situation
Rate this question:
Rear=(rear%1)+MAX_SIZE
Rear=rear%(MAX_SIZE+1)
Rear=(rear+1)%MAX_SIZE
Rear=rear+(1%MAX_SIZE)
Rate this question:
The name of array
The data type of array
The first data from the set to be stored
The index set of the array
Rate this question:
By this way computer can keep track only the address of the first element and the addresses of other elements can be calculated
The architecture of computer memory does not allow arrays to store other than serially
Both of above
None of the above
Rate this question:
P contains the address of an element in DATA.
P points to the address of first element in DATA
P can store only memory addresses
P contain the DATA and the address of DATA
Rate this question:
AB+ CD*E - FG /**
AB + CD* E - F **G /
AB + CD* E - *F *G /
AB + CDE * - * F *G /
Rate this question:
0
7
9
10
Rate this question:
1, 2, 3, 4, 5, 6, 7
2, 1, 4, 3, 6, 5, 7
1, 3, 2, 5, 4, 7, 6
2, 3, 4, 5, 6, 7, 1
Rate this question:
8
9
10
11
Rate this question:
Deleting a node whose location in given
Searching of an unsorted list for a given item
Inverting a node after the node with given location
Traversing a list to process each node
Rate this question:
Linked lists
Stacks
Queues
Deque
Rate this question:
Addition and deletion of an item to/ from the linked list require modification of the existing pointers
The linked list pointers do not provide an efficient way to search an item in the linked list
Linked list pointers always maintain the list in ascending order
The linked list data structure provides an efficient way to find kth element in the list
Rate this question:
Quiz Review Timeline (Updated): Mar 22, 2023 +
Our quizzes are rigorously reviewed, monitored and continuously updated by our expert board to maintain accuracy, relevance, and timeliness.
Wait!
Here's an interesting quiz for you.