InterviewSolution
Saved Bookmarks
| 1. |
The datatype INT stores ___________(a) 16 bit(b) 32 bit(c) 48 bit(d) 64 bitI got this question in exam.This interesting question is from MySQL Data Types topic in division Data Types of MySQL |
|
Answer» RIGHT choice is (b) 32 bit Easiest explanation: NUMERIC DATATYPES in MySQL are many. Each numeric datatype used in MySQL have their own RANGES in terms of bits. The INT datatype stores signed and unsigned VALUES of 32 bits. |
|