How do you write a double quote inside a string in JavaScript?
A). This is a quote'.'
B). 'This is a 'quote'.'
C). This is a 'quote'.
D). 'This is a 'quote'.'
Which escape sequence is used for a form feed character in JavaScript?
A). \n
B). \r
C). \f
D). \t
What is the escape sequence for a newline character in JavaScript?
A). \n
B). \t
C). \r
D). \f
What does the escape sequence \r represent in JavaScript?
A). Newline
B). Carriage return
C). Tab
D). Form feed
How can you represent a Unicode character in JavaScript using an escape sequence?
A). \u followed by the character
B). \u followed by the Unicode code point
C). \ followed by the character
D). \ followed by the Unicode code point
Which of the following escape sequences represents a vertical tab character in JavaScript?
A). \v
B). \t
C). \b
D). \f
What is the Unicode escape sequence for the character 'Z'?
A). \u005A
B). \u007A
C). \u005B
D). \u007B
How would you represent the Unicode character '' in JavaScript?
A). \u00E9
B). \u0065
C). \u00C9
D). \u00F9
What character set does JavaScript use to represent characters?
A). ASCII
B). ANSI
C). Unicode
D). ISO-8859-1
How would you write a string that spans multiple lines in JavaScript?
A). This is line one. This is line two.
B). This is line one.\nThis is line two.
C). 'This is line one.\nThis is line two.'
D). Both B and C