InterviewSolution
Saved Bookmarks
| 1. |
The maximum non zero value for FLOAT is ___________(a) 3.402823466E+38(b) 3.402823466E+37(c) 3.402823466E+39(d) 3.402823466E+35The question was posed to me during an interview for a job.Question is taken from MySQL Data Types in section Data Types of MySQL |
|
Answer» CORRECT option is (a) 3.402823466E+38 For explanation: In MySQL, each datatype has its own range. 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 FLOAT is 3.402823466E+38. |
|