Answer:
1. Start
2. A = 1
3. B = 10
4. C = 100
5. X = 0
6. X = C * 3
7. X = X + B * 6
8. X = X + A * 5
9. Print X
10. Stop
Step-by-step explanation:
Required
Write the Pseudocode for the instruction
The pseudocode begins and ends with a start and stop statement
The next 4 lines initializes A, B, C and X
2. A = 1
3. B = 10
4. C = 100
5. X = 0
The next 3 lines calculates the new value of X base on the given instruction
6. X = C * 3
7. X = X + B * 6
8. X = X + A * 5
This line displays the value of X to the screen
9. Print X