Are you ready?
1 questions to solve.
Instructions
- This quiz goes to full-screen once you press the Start button, or any Next button after exiting the quiz window.
- At the end of the quiz, you are able to review all the questions that you answered wrong and see their explanations.
JavaScript has distinct types for numbers like
True or false
int
, float
, etc.True or false
In JavaScript, all numbers have the same type returned by
typeof
i.e "number"
.How to raise 10 to the power 2?
Math.pow()
raises its first argument to the second one and the exponent operator does the same thing applied to operands.How to round
1.65
to the nearest integerMath.round()
rounds a number to the nearest integer. Hence the choice (A).Math.ceil(1.0005)
returns what?Math.ceil()
rounds a number to the next smallest integer. Hence 1.005 goes to 2, which corresponds with choice (B). See more details at JavaScript Math Object.1e+3
is the same as what?Anything following the
e
in JavaScript numbers is made the power of base 10 and then multiplied with the actual number. Check out more details at Numbers Basic Concepts.What will
toPrecision(0)
return when run on the number 0.56
?Every number conversion in JavaScript has to produce a number with at least 1 sf, likewise it is invalid to call
toPrecision(0)
. The correct answer is (D). Check out the JavaScript Number Methods for more details.