Question : 1 Which data structure organizes data in a sequential manner?
Queue
Stack
Array
Tree
Question : 2 Which data structure allows elements to be accessed randomly using an index?
Queue
Stack
Array
Linked List
Question : 3 Which data structure is based on the concept of First In First Out (FIFO)?
Stack
Array
Queue
Tree
Question : 4 Which data structure stores elements in a non-contiguous memory location?
Array
Stack
Linked List
Queue
Question : 5 Which data structure allows elements to be inserted or removed only from one end?
Queue
Stack
Array
Linked List
Question : 6 Which data structure represents a collection of elements with each element containing a reference to its adjacent element?
Queue
Stack
Linked List
Tree
Question : 7 Which data structure is a hierarchical collection of elements in which each element can have a parent and multiple children?
Stack
Queue
Tree
Linked List
Question : 8 Which data structure is used to efficiently search, insert, and delete elements, and is based on a binary tree structure?
Queue
Binary Search Tree
Stack
Linked List
Question : 9 Which data structure is a collection of elements in which each element has a unique identifier?
Array
Set
Queue
Stack
Question : 10 Which data structure is a variant of a queue with two primary operations, enqueue and dequeue, but with a limited size?
Queue
Priority Queue
Circular Queue
Stack
Question : 11 Which data structure is used for quickly finding a range of elements within a collection?
Array
Hash Table
Binary Search Tree
Segment Tree
Question : 12 Which data structure efficiently maintains a set of elements with operations like union, find, and make set?
Heap
Disjoint Set
Hash Table
Graph
Question : 13 Which data structure is used for representing graphs?
Tree
Stack
Linked List
Graph
Question : 14 Which data structure is a special type of graph where each node is connected to every other node?
Binary Tree
Tree
Graph
Complete Graph
Question : 15 Which data structure is used for mapping keys to values?
Array
Queue
Hash Table
Linked List