InterviewSolution
Saved Bookmarks
| 1. |
What is the escape sequence for carriage return?(a) ‘c’(b) ‘’(c) ‘’(d) ‘z’ |
|
Answer» Right answer is (b) ‘’ The best I can explain: MySQL provides the facility to use a wide range of escape sequences. They are special characters. They begin with the backslash character. For example, ‘’ specifies carriage return. |
|