
Asked in Amazon
Postfix Expression Evaluation Problem Statement
Given a postfix expression, your task is to evaluate the expression. The operator will appear in the expression after the operands. The output for each expression should be the result modulo (109+7). Use modular division when necessary.
Example:
Explanation:
Infix expression: A + B * C - D
Postfix expression: A B + C D - *
Input:
The first line contains an integer ‘T’ representing the number of test cases.
Each of the next ‘T’ lines contains one postfix expression.
Output:
For each test case, print the integer result of evaluating the given postfix expression.
Constraints:
- The first line of input contains an integer ‘T’ such that 1 ≤ T ≤ 100
- Each postfix expression has a length ‘N’ such that 1 ≤ N ≤ 103
- The operands in the expression are represented by integers ‘NUM’ such that 1 ≤ NUM ≤ 100
- Operators include: '*', '/', '+', '-'
- Operators and operands are separated by a space
- No brackets are present in the postfix expression
Note:
You do not need to print the expected output; just implement the function.

AnswerBot
4mo
Evaluate postfix expressions by applying operators to operands in a given order.
Iterate through the postfix expression and push operands onto a stack
When an operator is encountered, pop the required n...read more
Help your peers!
Add answer anonymously...
Top Software Developer Interview Questions Asked at Amazon
Q. Could you describe the process for designing a data structure that allows for al...read more
Q. What is Java?
Q. Given two strings s and t, return true if they are equal when both are typed int...read more
Interview Questions Asked to Software Developer at Other Companies
Top Skill-Based Questions for Amazon Software Developer
Algorithms Interview Questions and Answers
250 Questions
Data Structures Interview Questions and Answers
250 Questions
Web Development Interview Questions and Answers
250 Questions
Java Interview Questions and Answers
250 Questions
SQL Interview Questions and Answers
250 Questions
Software Development Interview Questions and Answers
250 Questions
Stay ahead in your career. Get AmbitionBox app


Trusted by over 1.5 Crore job seekers to find their right fit company
80 L+
Reviews
10L+
Interviews
4 Cr+
Salaries
1.5 Cr+
Users
Contribute to help millions
AmbitionBox Awards
Get AmbitionBox app

