91.2k views
4 votes
assume a stack-oriented processor that includes the stack operations push and pop. arithmetic operations automatically involve the top one or two stack elements. begin with an empty stack and consider the following program push 4 push 7 push 8 add push 10 sub mul push 40 push 4 div add a) show the resulting stack after each operation is performed. b) write an expression using normal infix notation that is equal to the calculation just performed using this stack machine.

User BamaPookie
by
3.7k points

1 Answer

2 votes

Answer:

Sequence of popped values: h,s,f.

State of stack (from top to bottom): m, d

Step-by-step explanation:

User Thomas Smyth
by
3.2k points