11.
What is the result of Math.sqrt(16) in JavaScript?
12.
What is the result of Math.pow(2, 3) in JavaScript?
13.
What does Math.round(5.7) return in JavaScript?
14.
What does Math.ceil(5.2) return in JavaScript?
15.
What does Math.floor(5.9) return in JavaScript?
16.
What will be the value of x after let x = 10; x += 5;?
17.
What will be the value of x after let x = 10; x -= 3;?
18.
What will be the value of x after let x = 10; x *= 2;?
19.
What will be the value of x after let x = 10; x /= 2;?
20.
What will be the value of x after let x = 10; x %= 4;?