To determine which SQL expression calculates the square root of 16, we need to evaluate the options provided:
160.5 = 4.From this evaluation, the correct SQL expression to calculate the square root of 16 is POWER(16,0.5).
The SQL expression that calculates the square root of 16 is POWER(16, 0.5).
Additional Context:
Correct Answer: (2) POWER(16,0.5).


On a relation named Loan of a bank: 
On a relation named Loan of a bank: 
The following SQL query is executed:
SELECT L1.loannumber FROM Loan L1 WHERE L1.amount \(>\) (SELECT MAX(L2.amount) FROM Loan L2 WHERE L2.branchname = 'SR Nagar');