Stacks In Data Structures - Study Mode

[#91] For the given expression tree, write the correct postfix expression.
Correct Answer

(A) abc*+

[#92] Operations required for reversing a word or a string using stack are push() and pop().
Correct Answer

(A) True

[#93] In balancing parentheses algorithm, the string is read from?
Correct Answer

(B) left to right

[#94] What will be the word obtained if the word "abbcabb" is reversed using a stack?
Correct Answer

(C) bbacbba

[#95] Evaluate the following statement using infix evaluation algorithm and choose the correct answer. 1+2*3-2
Correct Answer

(C) 5