InterviewSolution
Saved Bookmarks
| 1. |
To convert an int to string, the function is _________________(a) INET_ATON()(b) INET_NTOA()(c) INET_ITOS()(d) INET_STOI() |
|
Answer» Correct answer is (b) INET_NTOA() The best I can explain: In MySQL, the function used to convert an integer to a string is INET_NTOA(). On the other hand, the function INET_ATON() converts a string to the corresponding integer value. |
|