The ____ method in the Math class returns the x number raised to the power of the y number.

A. Power(x,y)
B. Pow(x,y)
C. Exp(x,y)
D. Exponent(x,y)

Answer: B

Computer Science & Information Technology

You might also like to view...

When nesting loops:

a. The outer loop instructions are executed once for every time the inner loop instructions are executed. b. The inner loop instructions are executed the required times for every time the outer loop instructions are executed once. c. The outer loop instructions are executed the required time for every time the inner loop instructions are executed. d. None of the above.

Computer Science & Information Technology

Which of the following event object methods prevents other event listeners of the event from being called?

A. evt.stopImmediatePropagation() B. evt.stopPropagation() C. evt.preventDefault() D. evt.cancelable()

Computer Science & Information Technology