InterviewSolution
Saved Bookmarks
| 1. |
What is the maximum non zero values for DOUBLE?(a) ±1.7976931348623157E+307(b) ±1.7976931348623157E+308(c) ±1.7976931348623157E+306(d) ±1.7976931348623157E+305 |
|
Answer» Correct option is (b) ±1.7976931348623157E+308 To explain I would say: In MySQL, all the datatypes have their own ranges. Data types give an idea of the kind of values and the ranges that a variable is allowed to store. The maximum non zero value for DOUBLE is ±1.7976931348623157E+308. |
|