Q
What is the effect of using \r in a string?

Answer & Solution

Answer: Option B
Solution:
The escape sequence \r moves the cursor to the beginning of the line (carriage return).
Related Questions on Average

How do you include a hexadecimal escape sequence in JavaScript?

A). \xXX

B). \hXX

C). \hexXX

D). \hdecXX

Which escape sequence represents a carriage return?

A). \r

B). \n

C). \c

D). \cr

Which escape character is used to include a single quote in a JavaScript string?

A). \\

B). \'

C). \`

D). \'

What is the purpose of using escape characters in JavaScript strings?

A). To format text

B). To include special characters

C). To execute code

D). To debug code

How do you include a newline character in a JavaScript string?

A). \n

B). \newline

C). \r

D). \newl

Which escape sequence is used for a backspace character?

A). \b

B). \back

C). \backspace

D). \bs

What is the correct syntax for including a Unicode character in a JavaScript string?

A). \\uXXXX

B). \uXXXX

C). \u{XXXX}

D). \unicodeXXXX

How do you include a null character in a JavaScript string?

A). \0

B). \null

C). \none

D). \zero

What will be the output of console.log('Hello\\nWorld');?

A). Hello World

B). Hello\nWorld

C). Hello

D). Hello

How do you include a vertical tab character in a JavaScript string?

A). \v

B). \vt

C). \vert

D). \vertical