Menu

Stacks Questions

MCQ
61.
Process of Removing element from the stack is called as __________.
forum Discussion
MCQ
62.
In the stack, If user try to remove element from the empty stack then it called as ___________.
forum Discussion
MCQ
63.
User push 1 element in the stack having already five elements and having stack size as 5 then stack becomes ___________.
forum Discussion
MCQ
64.
User perform following operations on stack of size 5 then -push(1);pop();push(2);push(3);pop();push(4);pop();pop();push(5);at the end of last operation, total number of elements present in the stack are -
forum Discussion
MCQ
65.
Consider Stack is implemented using the array. What will be the initial value with which top is initialized.
forum Discussion
MCQ
66.
Consider Stack is implemented using the array. In this implementation of stack maximum value of top which cannot cause overflow will _________.
forum Discussion
MCQ
67.
User perform following operations on stack of size 5 then -push(1);pop();push(2);push(3);pop();push(2);pop();pop();push(4);pop();pop();push(5);Which of the following is correct statement for stack ?
forum Discussion
MCQ
68.
What will be the postfix expression for following infix expression:b * c + d / e
forum Discussion
MCQ
69.
What will be the postfix expression for following infix expression - A / B ^ C - D
forum Discussion
MCQ
70.
What will be the postfix expression for following infix expression - A + B * C ^ D
forum Discussion