Choose a topic to test your knowledge and improve your Data structure skills
How do you instantiate an array in Java?
Which of the following is a correct way to declare a multidimensional array in Java?
Which of the following is two way lists?
In a linked list the _________field contains the address of next element in the list.
A list that has no nodes is called________.
The special list which consists of unused memory space is called __________.
The efficient searching algorithm for algorithm for a sorted array is _________.
To insert a new node in linked list free node will be available in ___________.
A ______________ list is a header list where the node points back to the header node.
How many pointers are necessarily changed for the insertion in a Linked List?
An algorithm that calls itself directly or indirectly is known as ____________.
The sequence (1,1) (2,1) (3,1) (1,2) (2,2) (3,2) . . . .represents _________.
______ is not a technique of tree traversal.
Selection sort and quick sort both fall into the same category of sorting algorithms._________ is thatcategory.
The possibility of two different keys k1 & k2 yielding the same hash address is called_______
Uniform distribution of the hash address throughout the given set L is _________
An edge E is called _________ if it has identical endpoints.
_________involves maintaining two tables in memory.
The data items in a record form a ________ structure which can be described by means of level numbers.
A path P of length n from a node u to a node v is defined as a sequence of _________ nodes.
A vertex of degree one is called __________
A connected graph T without any cycles is called _____________.
. If every node u in G is adjacent to every other node v in G, A graph is said to be _______.
In a graph G if e=(u,v), then u and v are called ___________.
Which of the following is true while inserting a new node in the list?
The efficiency of a BFS algorithm is dependent on _______.
The average number of key comparisons done in a successful sequential search in a list of length n is_________
Divide and conquer is an important algorithm design paradigm based on _______.
The correctness of a divide and conquer algorithm is usually proved by _________.
The ____________ is used in an elegant sorting algorithm.
___ is finding a path/tour through the graph such that every vertex is visited exactly once.
_________ data structure is used to implement Depth First search.
The binary tree that has n leaf nodes. The number of nodes of degree 2 in this tree is
Each entry in a linked list is a called a_______________.
Quick sort uses ____ for implementation.