Data Structure (NCO)
Description: DS | |
Number of Questions: 15 | |
Created by: Tanya Dwivedi | |
Tags: DS Data Structures |
______________ is recognised as a non-linear data structure.
Which of the following is the essential condition required for binary search?
_____________ is the process of accessing each element of the array exactly once to do some operation.
_______________ is the order in which all the first row elements are stored in sequential memory location then all the second row elements are stored and so on.
Which of the following is the greatest disadvantage of using arrays?
Which of the following is the operation in which a new data or element is inserted into the stacks?
_______________ specifies the overflow condition in stack.
Which of the following is the correct conversion of the infix expression A+B*C into postfix expression?
Which of the following operators is used in C++ to dynamically allocate memory space for a new node in the linked list?
Which of the following type of queues is the one in which all nodes are treated as circular such that the last node follows the first node?
___________ pointer is incremented in a queue when a new element is added.
Which of the following is the technique in which if a node is deleted from the linked list then the memory space of the deleted node is immediately reinserted into the free storage?
Which of the following datatypes is used in C++ to implement linked list in a program?
Which of the following is the first operation performed on a linked list?
______________ is a tree in which each leaf node is at the same distance from the root.