Complete the following:_____
1: The character escape sequence to force the cursor to go to the next line is:_______.
2: The character escape sequence to force the cursor to advance forward to the next tab setting is:_______.
3: The character escape sequence to represent a single quote is:_________.
4: The character escape sequence to represent a double quote is:________.
5: The character escape sequence to represent a backslash is:________.

Respuesta :

Answer:

The answer to the give question as follows:

1) \n

2) \t

3) \'

4) \"

5) \\

Explanation:

The description of the above symbols as follows:

  • The \n is used to provide the new line spacing.
  • The \t is used to provide a tab space.
  • To assign a single character value we use \' single.
  • The double \" quote is used to assign a string value.
  • The backslash is used to provide the character of the escape and it also used in a file path.