Multiple Choice
How can you round a price variable's value to the hundredths place (e.g., 204.89) ?
A) Use the remainder operator, price % 2.
B) Use the division operator, price / 2.
C) Call the round method, price.round(2) .
D) Call the toFixed method, price.toFixed(2) .
Correct Answer:

Verified
Correct Answer:
Verified
Q11: What is the syntax for generating a
Q12: The <code>window</code> object's <code>screen</code> property holds information
Q13: A(n) _ is a pictorial representation of
Q14: Proper coding conventions suggest that when there
Q15: After the following code executes, what does
Q17: A block statement (zero or more statements
Q18: For the "if, else if, else" form
Q19: The window object is known as the
Q20: Suppose you have a variable named character.
Q21: What is an <code>if</code> statement's condition?<br>A) A