Which character in JavaScript code will be interpreted as XML markup?
A
!
B
>
C
&
D
.
Correct Answer: &
If your JavaScript code contains the < or & characters, these characters are interpreted as XML markup. Element tags must begin with the < character, and entities and character references in an XML document must begin with the & character.