A. Predict the output:
i.
Math.ceil(8.3);
ii.
Math.sqrt(144);
Answers
Answered by
1
1.5
2.12
pls mark as brainlist...
Answered by
2
Question:-
Predict the output of the following code.
Answer:-
Math.ceil(8.3)=9.0
Math.sqrt(144)=12.0
Math.ceil() is used to return the higher integer for the given argument.
Math.sqrt() is used to calculate the square root of a positive number.
Similar questions