InterviewSolution
Saved Bookmarks
| 1. |
The expression 12 DIV 5 evaluates to ____________(a) 2.4(b) 2(c) error(d) 0 |
|
Answer» Correct choice is (b) 2 The best I can explain: The ‘DIV’ operator in MySQL is used to perform the integer divisions. The operator ‘/’ performs the quotient of the operands. If result exceeds the 64-bit range, unpredicted results are shown. |
|