24.
Which of the following is a valid JavaScript Math function?
Math.pow()
Math.sqrt()
Math.random()
Math.concat()
Correct: A, B, C
The correct answers are A1 (Math.pow()), A2 (Math.sqrt()), and A3 (Math.random()). Math.pow() is used to calculate the power of a number, Math.sqrt() is used to calculate the square root of a number, and Math.random() is used to generate a random number between 0 and 1. Math.concat() is not a valid JavaScript Math function.