Which of the following XML fragments are well-formed? <myElement myAttribute="value1 <= value2"/> None of these <myElement myAttribute="value1 > value2"/> <myElement myAttribute="value1 & value2"/> TRUE ANSWER : ? YOUR ANSWER : ?
Valid XML document means (most appropriate) ? the document contains atleast one or more root element Each element must nest inside any enclosing element property the document has root element the XML document has DTD associated with it & it complies with that DTD TRUE ANSWER : ? YOUR ANSWER : ?
The use of a DTD in XML development is ? no longer necessary after the XML editor has been customized required when validating XML documents used to direct conversion using an XSLT processor a good guide to populating a templates to be filled in when generating an XML document automatically TRUE ANSWER : ? YOUR ANSWER : ?
Which statement is true? All XML elements must be lower case All the statements are true All XML elements must have a closing tag All XML documents must have a DTD TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following programs support XML or XML applications? Internet Explorer 5.5 RealPlayer Netscape D.7 Internet Explorer 5.5 & Netscape D.7 TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following XML fragments are well-formed? <?xml version="A.0"?> <?xml encoding="JIS"?> <?xml encoding="JIS" version="A.0"?> <?xml?> TRUE ANSWER : ? YOUR ANSWER : ?
Which of these node is also known as "root" ? namespace comment document elemen TRUE ANSWER : ? YOUR ANSWER : ?
Which of these are not a kind of XPath nodes ? comment namespace instruction processing-instruction TRUE ANSWER : ? YOUR ANSWER : ?
To add the attribute named Type to the <customer> tag the syntax will be ? <customer Type attribute_type=”exelent”> <customer attribute Type=”exelent”> <customer Type=” exelent” > <customer Type attribute =”exelent”> TRUE ANSWER : ? YOUR ANSWER : ?