Question:

Which SQL expression calculates the square root of 16?

Updated On: Nov 4, 2024
  • POWER(16,2)
  • POWER(16,0.5)
  • POWER(16,1)
  • MOD(16)
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

The POWER(16,0.5) expression in SQL calculates the square root of 16 by raising it to the power of 0.5.
Was this answer helpful?
0
0