InterviewSolution
Saved Bookmarks
| 1. |
‘2341’ is a ____________(a) integer(b) floating point(c) hexadecimal(d) string |
|
Answer» Right answer is (d) string The explanation: In MySQL, the string values are written by enclosing them within quotes. Values like ‘Alexander’, ‘Kolkata, India’ and ‘2341’ are strings. ‘2341’ looks like an integer but is a string. |
|