.
3. Which of these returns an integer that is greater than or equal to the specified decimal number.
a. fabs()
b. ceil()
c. exp(
Answers
Answered by
2
Answer:
b. ceil()
Explanation:
Math.ceil(-1.2) will return -1
Math.ceil(1.2) will return 2
Similar questions