Answer:
B
Explanation:
The while statement has a typo. It should be While A <= 3
So A goes through the values 2 and 3.
For the value A=2, the program prints 5 and 5
For the value A=3, the program prints 7.5 and 7, where 7 is the truncated version of 7.5.