Edit Game
Math Methods in Java
 Delete

Use commas to add multiple tags

 Private  Unlisted  Public



 Save

Delimiter between question and answer:

Tips:

  • No column headers.
  • Each line maps to a question.
  • If the delimiter is used in a question, the question should be surrounded by double quotes: "My, question","My, answer"
  • The first answer in the multiple choice question must be the correct answer.






 Save   10  Close
System.out.println(Math.round(-2.5));
-2
Evaluate Math.ceil(-4.7)
-4
What will Math.ceil(0.001) return
1.0
What is the result of Math.round(3.6)
4
A student’s average is 76.7. Round it using Math.round()
77.0
Compute the result of Math.floor(0.99)
0.0
A warehouse packs boxes with whole items only. If you have 9.8 items worth of material, how many full boxes can you fill?
9
Evaluate Math.floor(-2.3)
-3.0
What is the output of Math.ceil(3.2)
4.0
System.out.println(Math.abs(-5));
5