SlideShare a Scribd company logo
2
Most read
XML Technology
By – Ravina Jeswani
Quiz - 1
1. What does XML stand for?
A. eXtra Modern Link
B. eXtensible Markup Language
C. Example Markup Language
D. X-Markup Language
2. What is the correct syntax of the declaration which defines the XML version?:
A. <xml version=“1.0" />
B. <?xml version=“1.0"?>
C. <?xml version=“1.0" />
D. None of the above
3. Which statement is true?
A. All the statements are true
B. All XML elements must have a closing tag
C. All XML elements must be lower case
D. All XML documents must have a DTD
4. Is it easier to process XML than HTML?
A. Yes
B. No
C. Sometimes
D. Cant say
5. Which of the following programs support XML or XML applications?:
A. Internet Explorer 5.5
B. Netscape 0.7
C. RealPlayer.
D. both A and B
6. Kind of Parsers are
A. well-formed
B. well-documented
C. non-validating and validating
D. none of the above
7. Well formed XML document means
A. it contains a root element
B. it contain an element
C. it contains one or more elements
D. must contain one or more elements and root element must contain all other elements
8. Comment in XML document is given by
A. <?-- -->
B. <!-- --!>
C. <!-- -->
D. </-- -- >
9. When processing an output XML, "new line" symbols
A. are copied into output "as is", i.e. "CR+LF" for Windows, CR for Macintosh, LF for Unix.
B. are converted to single LF symbol
C. are converted to single CR symbol
D. are discarded
10. Which of the following strings are a correct XML name?
A. _myElement
B. my Element
C. #myElement
D. None of the above
11. Which of the following strings are a correct XML name?
A. xmlExtension
B. xslNewElement
C. XMLElement#123
D. All
12. Which of the following XML fragments are well-formed?
A. <?xml?>
B. <?xml version=“1.0"?>
C. <?xml encoding="JIS"?>
D. <?xml encoding="JIS" version="A.0"?>
13. What are the predefined attributes
A. xml:lang
B. xml:space
C. both
D. none.
14. Kind of Parsers are
A. well-formed
B. validating
C. non-validating
D. Both B & C
15. Valid XML document means (most appropriate)
A. the document has root element
B. the document contains atleast one or more root element
C. the XML document has DTD associated with it & it complies with that DTD
D. Each element must nest inside any enclosing element property
16. XML uses the features of
A. HTML
B. XHTML
C. VML
D. SGML
17. XML document can be viewed in
A. Browser
B. social media
C. mail
D. media
18. There is a way of describing XML data, how?
A. XML uses a DTD to describe the data
B. XML uses XSL to describe data
C. XML uses a description node to describe data
D. Both A and C
19. What does DTD stand for?
A. Direct Type Definition
B. Document Type Definition
C. Do The Dance
D. Dynamic Type Definition
20. DTD includes the specifications about the markup that can be used within the document,
the specifications consists of all EXCEPT
A. the browser name
B. the size of element name
C. entity declarations
D. element declarations
21. Which of the following XML documents are well-formed?
A. <firstElement>some text goes here
<secondElement>another text goes here</secondElement>
</firstElement>
B. <firstElement>some text goes here</firstElement>
<secondElement> another text goes here</secondElement>
C. <firstElement>some text goes here
<secondElement> another text goes here</firstElement>
</secondElement>
D. </firstElement>some text goes here
</secondElement>another text goes here
<firstElement>
22. Which of the following XML fragments are well-formed?
A. <myElement myAttribute="someValue"/>
B. <myElement myAttribute=someValue/>
C. <myElement myAttribute=’someValue’>
D. <myElement myAttribute="someValue’/>
23. How can we make attributes have multiple values:
A. <myElement myAttribute="value1 value2"/>
B. <myElement myAttribute="value1" myAttribute="value2"/>
C. <myElement myAttribute="value1, value2"/>
D. attributes cannot have multiple values
24. Which of the following XML fragments are well-formed?
A. <myElement myAttribute="value1 <= value2"/>
B. <myElement myAttribute="value1 & value2"/>
C. <myElement myAttribute="value1 > value2"/>
D. None of the above
25. The use of a DTD in XML development is:
A. required when validating XML documents
B. no longer necessary after the XML editor has been customized
C. used to direct conversion using an XSLT processor
D. a good guide to populating a templates to be filled in when generating an XML document automatically
26. Parameter entities can appear in
A. xml file
B. dtd file
C. xsl file
D. Both 1 and 2
27. Attribute standalone="no" should be included in XML declaration if a document:
A. is linked to an external XSL stylesheet
B. has external general references
C. has processing instructions
D. has an external DTD
28. In XML
A. the internal DTD subset is read before the external DTD
B. the external DTD subset is read before the internal DTD
C. there is no external type of DTD
D. there is no internal type of DTD
29. Disadvantages of DTD are
(i)DTDs are not extensible
(ii)DTDs are not in to support for namespaces
(iii)there is no provision for inheritance from one DTDs to another
A. (i) is correct
B. (i),(ii) are correct
C. (ii),(iii) are correct
D. (i),(ii),(iii) are correct
30. To use the external DTD we have the syntax
A. <?xml version=”A.0” standalone=”no”?>
<! DOCTYPE DOCUMENT SYSTEM “order.dtd”?>
B. <?xml version=”A.0” standalone=”yes”?>
<! DOCTYPE DOCUMENT SYSTEM “order.dtd”?>
(3 )<?xml version=”A.0” standalone=”no”?>
<! DOCTYPE DOCUMENT “order.dtd”?>
D. <?xml version=”A.0” standalone=”yes”?>
<! DOCTYPE DOCUMENT SYSTEM “order.dtd”?>
31. To add the attribute named Type to the <customer> tag the syntax will be
A. <customer attribute Type=”exelent”>
B. <customer Type attribute =”exelent”>
C. <customer Type attribute_type=”exelent”>
D. <customer Type=” exelent” >
32. The syntax for parameter entity is
A. <! ENTITY % NAME DEFINITION>
B. < ENTITY % NAME DEFINITION>
C. <! ENTITY $ NAME DEFINITION>
D. < ENTITY % NAME DEFINITION>
33. You can name the schema using the name attribute like
A. <schema attribute=”schema1”>
B. <schema nameattribute=”schema1”>
C. <schema nameattri=”schema1”>
D. <schema name=”schema1”>
34. The default model for complex type, in XML schemas for element is
A. textOnly
B. elementOnly
C. no default type
D. both 1 & 2
35. Microsoft XML Schema Data types for Hexadecimal digits representing octets
A. UID
B. UXID
C. UUID
D. XXID
36. A schema describes
(i) grammar
(ii) vocabulary
(iii) structure
(iv) datatype of XML document
A. (i) & (ii) are correct
B. (i),(iii) ,(iv) are correct
C. (i),(ii),(iv) are correct
D. (i),(ii),(iii),(iv) are correct
37. Microsoft XML Schema Data Type “ Boolean” has values
A. True ,False
B. True ,False or 1,0
C. 1,0
D. any number other then zero and zero
38. Simple type Built into Schema “ data’ represent a data in
A. MM-DD-YY
B. Dd-MM-YY
C. YY-MM-DD
D. YYYY-MM-DD
39. In simple Type Built into XML schema Boolean type holds
A. True, False
B. 1,0
C. both A. & B.
D. True/False and any number except 0
40. In simple type built into XML schema type flat has single precision of ________ floating point
A. 16 bit
B. 32 bit
C. 8 bit
D. 4 bit
41. The XML DOM object is
A. Entity
B. Entity Reference
C. Comment Reference
D. Comment Data
42. Attribute of the document interface in DOM is/are
(i)doctype
(ii)implementation
(iii)documentElement
which are read only attributes
A. (i) only
B. (ii) only
C. (ii),(iii) only
D. all
43. The default model for complex type, in XML schemas for element is
A. textOnly
B. elementOnly
C. no default type
D. both a & b
44. To create a choice in XML schemas, we use the
A. <xsd:select> element
B. <xsd:multi> element
C. <xsd:choise> element
D. <xsd:single> element
45. The XML DOM object is
A. Entity
B. Entity Reference
C. Comment Reference
D. Comment Data
46. To create a data island we use the _____________HTML element
A. <XML>
B. <dataisland>
C. <Island>
D. <XMLIsland>
47. To Bind the HTML elements with DSO we use _________ attribute
A. DATASOURCE
B. DATAFIELD
C. DATASRC
D. DATAFLD
48. To bind the HTML element <INPUT> Type in text with the datasource “ dsoCustomer” we use
A. <INPUT TYPE=”TEXT” DATAFIELD=”#dsoCustomer”>
B. <INPUT TYPE=”TEXT” DATASRC=” dsoCustomer”>
C. <INPUT TYPE=”TEXT” DATASRC=” #dsoCustomer” >
D. <INPUT TYPE=”TEXT” DATAFLD=” #dsoCustomer”>
49. XML DSOs has the property for the number of pages of data the recordset contains
A. count
B. number
C. pageCount
D. pageNumber
50. What is so great about XML?
A. Easy data exchange
B. High speed on network
C. Only B is correct
D. Both A. & B.

More Related Content

PPTX
XML's validation - DTD
PPTX
Basics of Xml
PPTX
Document type definition
PPT
2 dtd - validating xml documents
PPT
Document Type Definition
PPT
PPTX
Cleaner Code: How Clean Code is Functional Code
XML's validation - DTD
Basics of Xml
Document type definition
2 dtd - validating xml documents
Document Type Definition
Cleaner Code: How Clean Code is Functional Code

What's hot (11)

PPTX
XML's validation - XML Schema
PPTX
Xml dtd
PPTX
Regular expression unit2
PPT
PDF
Introduction to DTD
PPT
Introduction to XML
PPTX
Object Oriented Programming Concepts
PDF
Beyond JavaScript Frameworks: Writing Reliable Web Apps With Elm - Erik Wende...
PPT
PPTX
Cleaner Code - CodeStock 2019 Edition
XML's validation - XML Schema
Xml dtd
Regular expression unit2
Introduction to DTD
Introduction to XML
Object Oriented Programming Concepts
Beyond JavaScript Frameworks: Writing Reliable Web Apps With Elm - Erik Wende...
Cleaner Code - CodeStock 2019 Edition
Ad

Similar to Quiz on XML (20)

PPTX
PDF
Object Oriented Programming using C++ PCIT102.pdf
PPTX
PART - 1 Cpp programming Solved MCQ
PDF
OOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUR
PDF
Top 40 Javascript Interview Questions and Answers.pdf
PPTX
Part - 2 Cpp programming Solved MCQ
PDF
OOM MCQ 2018
PPT
PPT
Xml Presentation-1
DOC
Csharp
DOC
C++ questions
PDF
Systems Analysis and Design 9th Edition Kendall Test Bank
PPT
Dublin Core Basic Syntax Tutorial
PPT
PPT
Extended Markup Basic Introduction .ppt
PPT
Extended Markup Basic Introduction .ppt
DOC
BISH CS Modle Exit Exam.doc
PPTX
data structure & algorithm chapter1.pptx
PDF
Unit 1 - What is jQuery_Why jQuery_Syntax_Selectors.pdf
Object Oriented Programming using C++ PCIT102.pdf
PART - 1 Cpp programming Solved MCQ
OOM MCQ Dev by Prof PL Pradhan TGPCET, NAGPUR
Top 40 Javascript Interview Questions and Answers.pdf
Part - 2 Cpp programming Solved MCQ
OOM MCQ 2018
Xml Presentation-1
Csharp
C++ questions
Systems Analysis and Design 9th Edition Kendall Test Bank
Dublin Core Basic Syntax Tutorial
Extended Markup Basic Introduction .ppt
Extended Markup Basic Introduction .ppt
BISH CS Modle Exit Exam.doc
data structure & algorithm chapter1.pptx
Unit 1 - What is jQuery_Why jQuery_Syntax_Selectors.pdf
Ad

Recently uploaded (20)

PPTX
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Pre independence Education in Inndia.pdf
PDF
Insiders guide to clinical Medicine.pdf
PDF
Complications of Minimal Access Surgery at WLH
PDF
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
PPTX
Lesson notes of climatology university.
PDF
Anesthesia in Laparoscopic Surgery in India
PPTX
Institutional Correction lecture only . . .
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPTX
master seminar digital applications in india
PDF
O7-L3 Supply Chain Operations - ICLT Program
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Basic Mud Logging Guide for educational purpose
PDF
01-Introduction-to-Information-Management.pdf
PDF
RMMM.pdf make it easy to upload and study
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PPTX
Microbial diseases, their pathogenesis and prophylaxis
PPTX
PPH.pptx obstetrics and gynecology in nursing
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
1st Inaugural Professorial Lecture held on 19th February 2020 (Governance and...
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Pre independence Education in Inndia.pdf
Insiders guide to clinical Medicine.pdf
Complications of Minimal Access Surgery at WLH
The Lost Whites of Pakistan by Jahanzaib Mughal.pdf
Lesson notes of climatology university.
Anesthesia in Laparoscopic Surgery in India
Institutional Correction lecture only . . .
FourierSeries-QuestionsWithAnswers(Part-A).pdf
master seminar digital applications in india
O7-L3 Supply Chain Operations - ICLT Program
Final Presentation General Medicine 03-08-2024.pptx
Basic Mud Logging Guide for educational purpose
01-Introduction-to-Information-Management.pdf
RMMM.pdf make it easy to upload and study
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Microbial diseases, their pathogenesis and prophylaxis
PPH.pptx obstetrics and gynecology in nursing
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...

Quiz on XML

  • 1. XML Technology By – Ravina Jeswani Quiz - 1
  • 2. 1. What does XML stand for? A. eXtra Modern Link B. eXtensible Markup Language C. Example Markup Language D. X-Markup Language 2. What is the correct syntax of the declaration which defines the XML version?: A. <xml version=“1.0" /> B. <?xml version=“1.0"?> C. <?xml version=“1.0" /> D. None of the above 3. Which statement is true? A. All the statements are true B. All XML elements must have a closing tag C. All XML elements must be lower case D. All XML documents must have a DTD 4. Is it easier to process XML than HTML? A. Yes B. No C. Sometimes D. Cant say 5. Which of the following programs support XML or XML applications?: A. Internet Explorer 5.5 B. Netscape 0.7 C. RealPlayer. D. both A and B
  • 3. 6. Kind of Parsers are A. well-formed B. well-documented C. non-validating and validating D. none of the above 7. Well formed XML document means A. it contains a root element B. it contain an element C. it contains one or more elements D. must contain one or more elements and root element must contain all other elements 8. Comment in XML document is given by A. <?-- --> B. <!-- --!> C. <!-- --> D. </-- -- > 9. When processing an output XML, "new line" symbols A. are copied into output "as is", i.e. "CR+LF" for Windows, CR for Macintosh, LF for Unix. B. are converted to single LF symbol C. are converted to single CR symbol D. are discarded 10. Which of the following strings are a correct XML name? A. _myElement B. my Element C. #myElement D. None of the above
  • 4. 11. Which of the following strings are a correct XML name? A. xmlExtension B. xslNewElement C. XMLElement#123 D. All 12. Which of the following XML fragments are well-formed? A. <?xml?> B. <?xml version=“1.0"?> C. <?xml encoding="JIS"?> D. <?xml encoding="JIS" version="A.0"?> 13. What are the predefined attributes A. xml:lang B. xml:space C. both D. none. 14. Kind of Parsers are A. well-formed B. validating C. non-validating D. Both B & C 15. Valid XML document means (most appropriate) A. the document has root element B. the document contains atleast one or more root element C. the XML document has DTD associated with it & it complies with that DTD D. Each element must nest inside any enclosing element property
  • 5. 16. XML uses the features of A. HTML B. XHTML C. VML D. SGML 17. XML document can be viewed in A. Browser B. social media C. mail D. media 18. There is a way of describing XML data, how? A. XML uses a DTD to describe the data B. XML uses XSL to describe data C. XML uses a description node to describe data D. Both A and C 19. What does DTD stand for? A. Direct Type Definition B. Document Type Definition C. Do The Dance D. Dynamic Type Definition 20. DTD includes the specifications about the markup that can be used within the document, the specifications consists of all EXCEPT A. the browser name B. the size of element name C. entity declarations D. element declarations
  • 6. 21. Which of the following XML documents are well-formed? A. <firstElement>some text goes here <secondElement>another text goes here</secondElement> </firstElement> B. <firstElement>some text goes here</firstElement> <secondElement> another text goes here</secondElement> C. <firstElement>some text goes here <secondElement> another text goes here</firstElement> </secondElement> D. </firstElement>some text goes here </secondElement>another text goes here <firstElement> 22. Which of the following XML fragments are well-formed? A. <myElement myAttribute="someValue"/> B. <myElement myAttribute=someValue/> C. <myElement myAttribute=’someValue’> D. <myElement myAttribute="someValue’/> 23. How can we make attributes have multiple values: A. <myElement myAttribute="value1 value2"/> B. <myElement myAttribute="value1" myAttribute="value2"/> C. <myElement myAttribute="value1, value2"/> D. attributes cannot have multiple values 24. Which of the following XML fragments are well-formed? A. <myElement myAttribute="value1 <= value2"/> B. <myElement myAttribute="value1 & value2"/> C. <myElement myAttribute="value1 > value2"/> D. None of the above 25. The use of a DTD in XML development is: A. required when validating XML documents B. no longer necessary after the XML editor has been customized C. used to direct conversion using an XSLT processor D. a good guide to populating a templates to be filled in when generating an XML document automatically
  • 7. 26. Parameter entities can appear in A. xml file B. dtd file C. xsl file D. Both 1 and 2 27. Attribute standalone="no" should be included in XML declaration if a document: A. is linked to an external XSL stylesheet B. has external general references C. has processing instructions D. has an external DTD 28. In XML A. the internal DTD subset is read before the external DTD B. the external DTD subset is read before the internal DTD C. there is no external type of DTD D. there is no internal type of DTD 29. Disadvantages of DTD are (i)DTDs are not extensible (ii)DTDs are not in to support for namespaces (iii)there is no provision for inheritance from one DTDs to another A. (i) is correct B. (i),(ii) are correct C. (ii),(iii) are correct D. (i),(ii),(iii) are correct 30. To use the external DTD we have the syntax A. <?xml version=”A.0” standalone=”no”?> <! DOCTYPE DOCUMENT SYSTEM “order.dtd”?> B. <?xml version=”A.0” standalone=”yes”?> <! DOCTYPE DOCUMENT SYSTEM “order.dtd”?> (3 )<?xml version=”A.0” standalone=”no”?> <! DOCTYPE DOCUMENT “order.dtd”?> D. <?xml version=”A.0” standalone=”yes”?> <! DOCTYPE DOCUMENT SYSTEM “order.dtd”?>
  • 8. 31. To add the attribute named Type to the <customer> tag the syntax will be A. <customer attribute Type=”exelent”> B. <customer Type attribute =”exelent”> C. <customer Type attribute_type=”exelent”> D. <customer Type=” exelent” > 32. The syntax for parameter entity is A. <! ENTITY % NAME DEFINITION> B. < ENTITY % NAME DEFINITION> C. <! ENTITY $ NAME DEFINITION> D. < ENTITY % NAME DEFINITION> 33. You can name the schema using the name attribute like A. <schema attribute=”schema1”> B. <schema nameattribute=”schema1”> C. <schema nameattri=”schema1”> D. <schema name=”schema1”> 34. The default model for complex type, in XML schemas for element is A. textOnly B. elementOnly C. no default type D. both 1 & 2 35. Microsoft XML Schema Data types for Hexadecimal digits representing octets A. UID B. UXID C. UUID D. XXID
  • 9. 36. A schema describes (i) grammar (ii) vocabulary (iii) structure (iv) datatype of XML document A. (i) & (ii) are correct B. (i),(iii) ,(iv) are correct C. (i),(ii),(iv) are correct D. (i),(ii),(iii),(iv) are correct 37. Microsoft XML Schema Data Type “ Boolean” has values A. True ,False B. True ,False or 1,0 C. 1,0 D. any number other then zero and zero 38. Simple type Built into Schema “ data’ represent a data in A. MM-DD-YY B. Dd-MM-YY C. YY-MM-DD D. YYYY-MM-DD 39. In simple Type Built into XML schema Boolean type holds A. True, False B. 1,0 C. both A. & B. D. True/False and any number except 0 40. In simple type built into XML schema type flat has single precision of ________ floating point A. 16 bit B. 32 bit C. 8 bit D. 4 bit
  • 10. 41. The XML DOM object is A. Entity B. Entity Reference C. Comment Reference D. Comment Data 42. Attribute of the document interface in DOM is/are (i)doctype (ii)implementation (iii)documentElement which are read only attributes A. (i) only B. (ii) only C. (ii),(iii) only D. all 43. The default model for complex type, in XML schemas for element is A. textOnly B. elementOnly C. no default type D. both a & b 44. To create a choice in XML schemas, we use the A. <xsd:select> element B. <xsd:multi> element C. <xsd:choise> element D. <xsd:single> element 45. The XML DOM object is A. Entity B. Entity Reference C. Comment Reference D. Comment Data
  • 11. 46. To create a data island we use the _____________HTML element A. <XML> B. <dataisland> C. <Island> D. <XMLIsland> 47. To Bind the HTML elements with DSO we use _________ attribute A. DATASOURCE B. DATAFIELD C. DATASRC D. DATAFLD 48. To bind the HTML element <INPUT> Type in text with the datasource “ dsoCustomer” we use A. <INPUT TYPE=”TEXT” DATAFIELD=”#dsoCustomer”> B. <INPUT TYPE=”TEXT” DATASRC=” dsoCustomer”> C. <INPUT TYPE=”TEXT” DATASRC=” #dsoCustomer” > D. <INPUT TYPE=”TEXT” DATAFLD=” #dsoCustomer”> 49. XML DSOs has the property for the number of pages of data the recordset contains A. count B. number C. pageCount D. pageNumber 50. What is so great about XML? A. Easy data exchange B. High speed on network C. Only B is correct D. Both A. & B.