InterviewSolution
Saved Bookmarks
| 1. |
The numbers that are prefixed with ‘0x’ are in base __________(a) 8(b) 16(c) 32(d) 64 |
|
Answer» Correct option is (b) 16 Explanation: In MySQL, there are many numeric datatypes. They include integers and floating points. For example, 34, 12.3, -1.3E11. The numbers that are prefixed with ‘0x’ are in hexadecimal. |
|