InterviewSolution
Saved Bookmarks
| 1. |
Numbers prefixed with ‘0x’ are in base __________(a) 8(b) 16(c) 32(d) 64 |
|
Answer» The correct choice is (b) 16 The best I can explain: 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. |
|