WorksheetsRemedial 1
Total questions: 10
Worksheet time: 5mins
Identify linear data structure
tree
graph
array
map
Which of the following is a characteristic of a stack?
Last In First Out
First In First Out
Random Access
Dynamic Size
What is the primary use of a queue in data structures?
To implement recursion
To allow random access to elements
To manage tasks in a sequential order
To store data in a sorted manner
Which of the following is not a linear data structure?
Binary Tree
Linked List
Array
Stack
Which of the following data structures uses a FIFO (First In First Out) method?
Linked List
Array
Queue
Stack
What is the main characteristic of a linked list?
Fixed size
Sorted order
Dynamic size
Random access
Which of the following is a non-linear data structure?
Linked List
Graph
Array
Stack
Which of the following data structures allows for dynamic memory allocation?
Queue
Linked List
Stack
Array
What is the primary characteristic of a queue?
Random access
Sorted order
First In First Out
Last In First Out
Which of the following is a common application of a stack?
Implementing a priority queue
Storing data in a database
Managing printer tasks
Undo functionality in applications
