Computer Science, asked by r4rajaryan25, 7 months ago

What will be the output of the following Python Code?

15.0 / 4.0 + (8 + 3.0)

a. 11.75 b. 12.85

c. 13.85 d. 14.75​

Answers

Answered by codecracker
1

Answer:

d

Explanation:

first 8+3.0 becomes 11.0

then 15.0/4.0 becomes 3.75

then add both answer is 14.75

Answered by Oreki
1

After Execution:

14.75​

Explanation:

> 15.0 / 4.0 + (8 + 3.0)

> 15.0 / 4.0 + 11.0

> 3.75 + 11.0

> 14.75

Similar questions