4,185 views

2 Answers

1 1 vote

Option C

Explanation

<?xml version="1.0" encoding="UTF-8"?>


This line is called XML Prolog .

The XML prolog is optional. If it exists, it must come first in the document.XML documents can contain international characters, like Norwegian øæå or French êèé.To avoid errors, you should specify the encoding used, or save your XML files as UTF-8.UTF-8 is the default character encoding for XML documents.

source : W3schools XML Syntax

edited by
Answer:
Position:
Show:

Related questions

5 5 votes
3 answers 3 answers
4.0k
4.0k views
go_editor asked Jun 19, 2016
3,959 views
To add a background color for all <h1 elements, which of the following HTML syntax is usedh1 { background-color :#FFFFFF}{ background-color :#FFFFFF} . h1h1 { background-...
6 6 votes
2 2 answers
4.2k
4.2k views
ajit asked Oct 15, 2015
4,150 views
The correct syntax to write "Hi there" in Javascript isjscript.write ("Hi There")response.write ("Hi There")print ("Hi There")print.jscript ("Hi There")
6 6 votes
1 answers 1 answer
3.9k
3.9k views
sh!va asked May 7, 2017
3,945 views
XPath is used to navigate through elements and attributes inXSL documentXML documentXHTML documentXQuery document
1 1 vote
1 1 answer
2.6k
2.6k views
Ishrat Jahan asked Nov 2, 2014
2,639 views
Consider an XML file called intro.xml and a document type defintion (DTD) file intro.dtd as follows:intro.xml<?xml version = "1.0"? <!DOCTYPE myMessage SYSTEM "intro.dtd"...