What is the datatype for single precision floating point number?
A. FLOAT
B. DOUBLE
C. INT
D. BIGINT
Answer: Option A
Solution (By Examveda Team)
This question is asking about how MySQL stores numbers with decimal points.Think of it like this:
* FLOAT is for numbers that don't need super high precision (like 3.14159). They are like small, quick calculators.
* DOUBLE is for numbers that need extra accuracy, like for scientific calculations (think really long decimals). They are like high-powered calculators.
* INT and BIGINT are for whole numbers (no decimal points) that are small (INT) or big (BIGINT).
So, the answer is Option A: FLOAT.
Related Questions on MySQL Miscellaneous
How is communication established with MySQL?
A. SQL
B. Network calls
C. A programming language like C++
D. APIs
Which type of database management system is MySQL?
A. Object-oriented
B. Hierarchical
C. Relational
D. Network

Join The Discussion