InterviewSolution
Saved Bookmarks
| 1. |
What is the use of Math class?(a) To use the mathematical functions with strings(b) To use the mathematical functions(c) To suppress the use of mathematical functions(d) To complex the calculations |
|
Answer» Right option is (b) To use the mathematical functions Best explanation: The Math class is provided with some special functions. These functions can be used to calculate and get result of some special and usual mathematical functions. We don’t have to write the code to calculate the trigonometric function results, instead we can use Math functions. |
|