

MCQOPTIONS
Saved Bookmarks
1. |
Consider the following code snippetfunction hypotenuse(a, b){function square(x){return x*x;}return Math.sqrt(square(a) + square(b));}What does the above code result? |
A. | um of square of a and b |
B. | quare of sum of a and b |
C. | um of a and b square |
D. | one of the mentioned |
Answer» B. quare of sum of a and b | |