Multiple choice technology web technology

What is a correct way of referring to a stylesheet called "mystyle.xsl" ?

  1. <link type="text/xsl" href="mystyle.xsl" />

  2. <?xml-stylesheet type="text/xsl" href="mystyle.xsl" ?>

  3. <stylesheet type="text/xsl" href="mystyle.xsl" />

  4. None of the above

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

The correct way to reference an XSL stylesheet in XML is using the xml-stylesheet processing instruction: . This is placed in the XML prolog, not as an HTML-style link tag.