Write a step-by-step plan, including comments that reflect changes to the machine state, to solve:
Question 1. Input a, b, and c (in that order) and calculate ab + abc.
Question 2. Input a, b, c, d, and x (in that order) and calculate and display
a + bx + cx2 + dx3.
Question 3. Input a, b, c, d, and x (in that order) and calculate and display a + (b + (c + dx)x)x. This is another way to calculate the output value of Problem, but this formula involves fewer multiplications.
Question 4. Find the error(s) in the following:
Question 5. Find the error(s) in the following: