Choose a topic to test your knowledge and improve your Data structure skills
Which if the following is/are the levels of implementation of data structure
A binary search tree whose left subtree and right subtree differ in hight by at most 1 unit is called ……
A binary search tree whose left subtree and right subtree differ in hight by at most 1 unit is called …… D. none of the above
Stack is also called as
…………… is not the component of data structure.
Which of the following is not the part of ADT description?
……. Is a pile in which items are added at one end and removed from the other.
Which data structure allows deleting data elements from and inserting at rear?
A ……. is a data structure that organizes data similar to a line in the supermarket, where the first one in line is the first one out.
Which of the following is non-liner data structure?
Herder node is used as sentinel in …..
Which data structure is used in breadth first search of a graph to hold nodes?
Which data structure is used in breadth first search of a graph to hold nodes?
Identify the data structure which allows deletions at both ends of the list but insertion at only one end.
Which of the following data structure is non linear type?
Which of the following data structure is linear type?
To represent hierarchical relationship between elements, Which data structure is suitable?
A directed graph is ………………. if there is a path from each vertex to every other vertex in the digraph.
In the …………….. traversal we process all of a vertex’s descendants before we move to an adjacent vertex.
The number of comparisons done by sequential search is ………………
In ……………, search start at the beginning of the list and check every element in the list.
Which of the following is not the internal sort?
A graph is said to be ……………… if the vertices can be split into two sets V1 and V2 such there are no edges between two vertices of V1 or two vertices of V2.
In a queue, the initial values of front pointer f rare pointer r should be …….. and ……….. respectively.
In a circular queue the value of r will be ..
The advantage of …………….. is that they solve the problem if sequential storage representation. But disadvantage in that is they are sequential lists.
…… is not the operation that can be performed on queue.
There is an extra element at the head of the list called a ……….
……… is not the operation that can be performed on queue.
A graph is a collection of nodes, called ………. And line segments called arcs or ……….. that connect pair of nodes.
A ……….. is a graph that has weights of costs associated with its edges.
In general, the binary search method needs no more than ……………. comparisons.
The property of binary tree is
Any node is the path from the root to the node is called
Which is/are the application(s) of stack
A …………… is an acyclic digraph, which has only one node with indegree 0, and other nodes have in-degree 1.
……. Is a directed tree in which outdegree of each node is less than or equal to two.
Which of the following data structure is non-linear type?
Which of the following data structure is linear type?
The logical or mathematical model of a particular organization of data is called a ………
The simplest type of data structure is ………………
Linear arrays are also called ……………….
Arrays are best data structures …………
Which of the following data structures are indexed structures?
Each node in a linked list has two pairs of ………….. and ……………….
A …………………… does not keep track of address of every element in the list.
When does top value of the stack changes?
Arrays are best data structures …………
fThe disadvantage in using a circular linked list is …………………….
A linear list in which each node has pointers to point to the predecessor and successors nodes is called as ..
A ……………….. is a linear list in which insertions and deletions are made to from either end of the structure.
In a priority queue, insertion and deletion takes place at ………………
The time complexity of quick sort is …………..
Which of the following is an application of stack?
The data structure which is one ended is ………………
A list which displays the relationship of adjacency between elements is said to be
……….. level is where the model becomes compatible executable code
Inserting an item into the stack when stack is not full is called …………. Operation and deletion of item form the stack, when stack is not empty is called ………..operation.
Each array declaration need not give, implicitly or explicitly, the information about
Finding the location of the element with a given value is:
Which of the following statement is true?i) Using singly linked lists and circular list, it is not possible to traverse the list backwards.ii) To find the predecessor, it is required to traverse the list from the first node in case of singly linked list.
What will be the value of top, if there is a size of stack STACK_SIZE is 5
…… is not the operation that can be performed on queue.
A data structure where elements can be added or removed at either end but not in the middle is called …
The term "push" and "pop" is related to the
Which data structure allows deleting data elements from front and inserting at rear?
node.next -> node.next.next; will make
A circular linked list can be used for
In doubly linked lists
The disadvantage in using a circular linked list is …………………….
In doubly linked lists, traversal can be performed?
What differentiates a circular linked list from a normal linked list?
How do you count the number of elements in the circular linked list?
What is a dequeue?
Suppose a circular queue of capacity (n – 1) elements is implemented with an array of n elements. Assume that the insertion and deletion operation are carried out using REAR and FRONT as array index variables, respectively. Initially, REAR = FRONT = 0. The conditions to detect queue full and queue empty are