In this week's class, you learned about prefix, infix, and postfix notation.
In infix notation (what we normally use), the operation is between the operands (Ex: 1+1)
In prefix notation, the operation is before the operands (1+1 would become + 1 1)
In postfix notation, the operation is after the operands (1+1 would become 1 1 +)
Homework:
ABC/-D+1/2^AB+/
28