Which of the following statement is false?
Arrays are dense lists and static data structure
Data elements in linked list need not be stored in adjacent space in memory
Pointers store the next data element of a list.
Linked lists are collection of the nodes that contain information part and next pointer
Which of the following name does not relate to stacks?
FIFO lists
LIFO list
Piles
Push-down lists
The insertion operation of the queue is called :
Enqueue
Dequeue
Overflow
Underflow
Circular linked list follows the
FIFO Principle
LIFO Principle
Both FIFO and LIFO
None of these
If an infix expression ((A + (B - C) * D) ^ E + F) converted into ABC- D * + E ^ F + . which form of expression is obtained?
Infix
Prefix
Arithmetic
Post fix
Which of the following data structure is linear data structure?
Trees
Graphs
Arrays
Which is more efficient for searching array of data?
Binary search
Linear search
Stacks
Queues
The operation of processing each element in the list is known as
Sorting
Merging
Inserting
Traversal
____________ is the simplest sorting method.
Linear
Bubble sort
Selection sort
Insertion sort
A data structure where elements can be added or removed at either end but not in the middle
Linked lists
Deque