InterviewSolution
Saved Bookmarks
| 1. |
What is the datatype for single precision floating point number?(a) FLOAT(b) DOUBLE(c) INT(d) BIGINT |
|
Answer» The correct choice is (a) FLOAT Best explanation: There are various numeric datatypes in MySQL. Some of them are TINYINT, SMALLINT, BIGINT, FLOAT, DOUBLE and BIT. ‘FLOAT’ is for single precision floating point numbers unlike DOUBLE. |
|