48.8k views
1 vote
A computer is programmed to accept a number, add 4 to it, and then multiply the sum by 5. Ifx represents the number first fed into the machine, and the result of the first run is then fed back into the computer, what will the result of the second run be?

1 Answer

4 votes

Answer:

=[{(x+4)*5} + 4] * 5

Explanation:

If x is input

Adding 4

=x+4

then multiplying by 5

=(x+4)*5

Giving the result of first run in second will give

=[{(x+4)*5} + 4] * 5

User Harry Steinhilber
by
5.8k points