InterviewSolution
Saved Bookmarks
| 1. |
x’ffff’ in decimal is ___________(a) 65534(b) 66535(c) 65536(d) 65537 |
|
Answer» Right choice is (c) 65536 For explanation I would say: In MySQL, string values are specified using the standard SQL notation x’val’. Here, val is pairs of hexadecimal digits (‘0’ through ‘ 9 ’ and ‘ a ’ through ‘ f ’). x’ffff’ is 65536 in decimal. |
|