205k views
3 votes
Multiple Choice

Which of the programs below will result in the following output?
Hours
8
85
10
Total
26.5

User Yoriz
by
5.2k points

2 Answers

4 votes

Answer:

A

Step-by-step explanation:

User PradyJord
by
4.9k points
4 votes

Answer:

print("Hours")

print(8)

print(8.5)

print(10)

print("Total")

print(8 + 8.5 + 10)Step-by-step explanation:

User Imulsion
by
5.2k points