213k views
4 votes
Read the following program. What is the apple's x position at the end of this program?

apple.x = 30;
banana.x = 60;
apple.x = banana.x + 30;
banana.x = 80;

1 Answer

0 votes

Final answer:

The apple's x position at the end of the program is 90.

Step-by-step explanation:

The apple's x position at the end of the program can be calculated step by step:

  1. apple.x = 30
  2. banana.x = 60
  3. apple.x = banana.x + 30 = 60 + 30 = 90
  4. banana.x = 80

Therefore, the apple's x position at the end of the program is 90.

User Bgamari
by
7.7k points