

InterviewSolution
Saved Bookmarks
1. |
Which is an escape sequence constant?(a) Esc(b) /n(c) \b(d) nargoutThis question was posed to me during an internship interview.I'm obligated to ask this question of Variables and Assignments in division MATLAB Basics of MATLAB |
Answer» CORRECT ANSWER is (c) \b Explanation: An escape sequence character constant is used in functions which are used to show output. ‘\b’ means BACKSPACE. ‘Esc’,‘/N’, are strings. ‘nargout’ is a pre-defined function in MATLAB. |
|