Vidyalelo
Data Structure · Q90

Stacks in Data Structures

Programming · Data Structure · question 90

Q90

The equivalent infix expression and value for the postfix form 1 2 + 3 * 4 5 * - will be . . . . . . . .

A.
1 + 2 * 3 - 4 * 5 and -13
B.
(2 + 1) * (3 - 4) * 5 and 13
C.
1 + 2 * (3 - 4) * 5 and -11
D.
(1 + 2) * 3 - (4 * 5) and -11
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board