Dive into the world of data structures with our 'Data Structures and Algorithmic Concepts! Trivia Quiz'. Test your knowledge on non-linear data structures, linked lists, stacks, binary trees, and array representations. Perfect for learners looking to sharpen their understanding and assess their skills in foundational computer science concepts.
Single linked list
Linear doubly linked list
Circular linked list
None of these
Rate this question:
S [Top-n]
S [Top+n]
S [Top-n-1]
None of the above
Rate this question:
2
1
0
3
Rate this question:
0
5
10
15
Rate this question:
2
5
3
0
Rate this question:
O(n logn)
O(2n)
O(n2)
None of above
Rate this question:
First record of the actual data
Last record of the actual data
Pointer to the last record of the actual data
None of above
Rate this question:
2 deletion and 3 additions
3 deletions and 2 additions
3 deletions and 3 additions
3 deletions and 4 additions
Rate this question:
16
12
6
10
Rate this question:
11
12
13
14
4
5
6
3
2,2,1,2,2
2,2,1,1,2
2,1,2,2,1
2,1,2,2,2
Has 19 nodes
Has 16 nodes
Has 15 nodes
None of the above
Rate this question:
Log (n +1) - 1
Log (n)
Log (n -1)n -1
Log (n) + 1
Rate this question:
Post order traversal
Inorder traversal
Preorder traversal
None of above
Rate this question:
2.6
2.7
2.8
2.9
Rate this question:
3
4
5
6
Rate this question:
N/2
(n-1)/2
(n+1)/2
Log (n) + 1
Rate this question:
Max(f(n),g(n))
Min(f(n),g(n))
F(n)+g(n)
F(n)*g(n)
Rate this question:
It decides the best algorithm to solve a problem
It determines maximum size of a problem, that can be solved in given system in given time
It is the lower bound of growth rate of algorithm
None of the above
N2
N
N3
Nn
Rate this question:
A1
A2
A3
A4
Rate this question:
Bubble sort
Selection sort
Insertion sort
Merge sort
Rate this question:
-------Top--| 4 | 6 |------------
------Top--| 5 | 4 | 6 |------------
-------Top--| 9 | 6 |------------
------Top--| 9 | 3 | 2 |------------
Rate this question:
Bubble sort
Quick sort
Merge sort
Heap sort
Rate this question:
Symbol table
Dope vector
Register vector
Activation table
Rate this question:
5 x 6 matrix with 9 non-zero entries
5 x 6 matrix with 8 non-zero entries
6 x 5 matrix with 8 non-zero entries
6 x 5 matrix with 9 non-zero entries
Rate this question:
FILO
FIFO
LIFO
Both a and c above
Rate this question:
N
N2
N log n
Log n
Rate this question:
Item is somewhere in the middle of the array
Item is not in the array at all
Item is the last element in the array
Item is the last element in the array or is not there at all
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:
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:
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 above
Rate this question:
Front=-1
Front=(rear+1)%maxsize
Front=(front+1)%maxsize
Rear=(rear+1)%maxsize
Rate this question:
Reversal of string
Evaluation of arithimatic operation
Real operating system
Recursion
Rate this question:
1
2
0
3
Rate this question:
Malloc
Calloc
Free
Realloc
Rate this question:
0
1
2
4
Rate this question:
Link list
Circular queue
Stack
Double ended queue
Rate this question:
Linear
Non- Linear
Complex
All the above
None
Rate this question:
For(i=pos;i>=1;i--) { A[i] = A[i+1]; }
For(i=pos ; i
For(i=N; i>=pos;i--) { A[i] = A[i+1]; }
For(i=N; i>=pos;i--) { A[i+1] = A[i] }
For(i=N; i
Rate this question:
For(i=N;i>=pos;i--) { a[i] = a[i+1]; }
For(i=pos;i
For(i=pos;i
For(i=pos-1;i
None
Rate this question:
Same
10,10, 20, 20, 30, 40
10,0 20, 0, 30, 40
10,30, 20, 0, 0, 40
40, 30 ,10, 0, 0, 0
Rate this question:
LIFO
FIFO
BOTH A and B
None
Rate this question:
Decrements by one
Increments by one
Stays there itself
Its always a 0
None
Rate this question:
If( top < 1)
If(top > 1)
If(top > N)
If( top < N)
None
Rate this question:
If(REAR > N)
If(REAR < = FRONT)
If(REAR < 0)
If(FRONT > REAR)
NONE
Rate this question:
Q[REAR] = item; REAR ++;
Item = Q[FRONT]; FRONT++;
Item = Q[REAR]; FRONT ++;
Item = Q[FRONT]; REAR ++;
NONE
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.