When an executable program run, it is loaded in the memory and becomes a_______.
Select correct option:
Thread
.h file
Process
None of the above
A kind of expressions where the operator is present between two operands called ________expressions.
Select correct option:
Infix
Postfix
Prefix
None of the above
Which of the following operations returns top value of the stack?
Select correct option:
push
pop
top
first
To create a _________ we link the last node with the first node in the list.
Select correct option:
Double linked list
Circularly-linked list
Linked list
None of the above
In the calling function, after the execution of the function called, the program continues its execution form the _______after the function call.
Select correct option:
Previous line
Next line
Beginning
None of the above
Doubly Linked List always has one NULL pointer.
Select correct option:
True
False
________ only removes items in reverse order as they were entered.
Select correct option:
Queue
Stack
Both of these
None of these
In the linked list implementation of the stack class, where does the push member function places the new entry on the linked list?
Select correct option:
After all other entries that are greater than the new entry.
At the head
After all other entries that are smaller than the new entry.
At the tail
Which of the following is known as "Last-In, First-Out" or LIFO Data Structure?
Select correct option:
Linked List
Stack
Queue
Tree
Which boolean expression indicates whether the numbers in two nodes (p and q) are the same. Assume that neither p nor q is null.
Select correct option:
p == q
p.data == q.data
p.nextNode == q. nextNode
p.data == q
We can not remove items randomly from _________
Select correct option:
Stack
Queue
Both of these
None of these
_____ is the stack characteristic but _______was implemented because of the size limitation of the array.
Select correct option:
isFull(),isEmpty()
pop(), push()
isEmpty() , isFull() (Page 62)
push(),pop()
“+” is a _________operator.
Select correct option:
Unary
Binary
Ternary
None of the above
Local variables of a function are stored in,
Select correct option:
Binary Search Tree
Stack
Queue
AVL Tree
Doubly Linked List always has one NULL pointer.
Select correct option:
True
False
Which of the following is known as "Last-In, First-Out" or LIFO Data Structure?
Select correct option:
Linked List
Stack
Queue
Tree
The _____ method of list will position the currentNode and lastCurrentNode at the start of the list.
Select correct option:
Remove
Next
Start (Page 38)
Back
A queue is a ________data structure, whereas a stack is a ________data structure.
Select correct option:
FIFO, LIFO
LIFO,FIFO
both of these
none of these
A kind of expressions where the operator is present between two operands called ________expressions.
Select correct option:
Infix
Postfix
Prefix
None of the above
The tree data structure is a
Select correct option:
Linear data structure
Non-linear data structure
Graphical data structure
Data structure like queue