Computer Science, asked by Avirajj6419, 9 months ago

Predict the return data type of math.round()

Answers

Answered by muserd3
1

Answer:

integer or a whole number

Explanation:

Answered by divyankmaan
5

Answer:

This particular maths method returns

This particular maths method returns the rounded off (integer) form of a decimal number. It is similar to the abs function in programming.

For example,

Code-

x=math.round(3.6)

print(x)

Output-

4

Please mark as brainliest.

Similar questions