Data Structures Question Bank Pdf - 1

Question: 1

In C, the symbol for the address operator is

(A) !

(B) &

(C) $

(D) %a

Ans: B

&

Question: 2

The in order traversal of tree will yield a sorted listing of elements of tree in

(A) avl tree

(B) binary trees

(C) binary search trees

(D) merging

Ans: C

binary search trees

Question: 3

A queue in which insertion and deletion takes places from any position is called

(A) priority

(B) dequeue

(C) circular queue

(D) random of queue

Ans: A

priority

Question: 4

The deletion operation in stack is called

(A) pop

(B) top

(C) push

(D) insert

Ans: A

pop

Question: 5

Each node in a linked list has two pairs of _____ and _____

(A) address field and link field

(B) avail field and information field

(C) link field and avail field

(D) link field and information field

Ans: D

link field and information field

Related Questions