Question:

Give output of:
Select Round (765.3895, 2)
will return:

Show Hint

Pay close attention to the digit following the rounding precision—it determines the final value.
Updated On: Apr 28, 2025
  • 765.38
  • 765.30
  • 765.00
  • 765.39
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is D

Solution and Explanation

The SQL `ROUND()` function rounds a numeric field to the number of decimal places specified. `ROUND(765.3895, 2)` rounds the number to two decimal places. Since the third decimal digit is 9 (greater than 5), it rounds up from 765.38 to 765.39.
Was this answer helpful?
0
0