Data Structure (NCO)
Description: This test contains basics of data structures. | |
Number of Questions: 31 | |
Created by: Mohini Tyagi | |
Tags: Data Structure DS Stack Queue Tree Graph Linkedlist Data Structures |
Which of the following is not a type of linear data structure?
A set of values (carrier set) and operations on those values is called a/an
Which of the following statements is not true about a stack data structure?
What is the name of a deletion operation in a stack?
Which of the following is not true about a queue data structure?
An arrangement of data in memory locations to represent values of carrier set of abstract data type is called a/an
Accessing each record/node exactly once, so that certain items in the record may be processed is called a/an
Reverse polish notation form is also called
A data structure in which elements may be added to or deleted from the front or the rear is called a
Which of the following statements is not correct about binary search tree?
In an empty stack, perform the following operations: push (A), push (B), push (C), pop, pop, push (D), push (E), pop. What is the value of the top of the stack?
Which sorting algorithm is pivot used for?
In any type of data structure, overflow condition occurs when
Which of the following is a correct prefix notation of given expression "A + B * C"?
What will be the value of the postfix expression 10, 5, 1, +, +, 4, /?
The maximum number of child nodes in a B-tree is
A type of Linked list where the pointer in the last node points back to the first node is called a
Find out the postorder traversal of the binary tree if the preorder traversal is I J K L M N and inorder traversal is K J I M L N.
Find out the preorder traversal of the binary tree if the postorder traversal is S T Q U R P and inorder traversal is S Q T P R U.
Which of the following traversal is used for Graph?
In which method of hashing function, a key is broken into several parts and each part has the same length as that of the required address except the last part?
What is equivalent reverse polish notation of the given infix notation "P * Q ^ R ^ S + T"?
Which of the following is not correct about a B-tree?
In a tree, a node without parent is called a/an
In delete operation of a binary tree, the next inorder successor node is replaced when a node has
In an expression binary tree, the internal node stores
Collection of trees is known as ________?
In a tree, the number of direct children of any node is called
Minimum spanning tree is the application of which data structure?
Which of the following is incorrect about a full binary tree?
A type of binary tree in which all levels except possibly the last are full, and the last level has all its nodes to the left side is called a