Computer Science, asked by AlexMondal123, 4 months ago

9. What value will Math.sqrt(Math.ceil(8.1)) return?

Answers

Answered by srujansingh5522
1

Answer:

The answer is from the Python language :

It returns answer - 3.0

Explanation:

import math

a = math.sqrt(math.ceil(8.1))

print (a)

Similar questions