Interview Questions

AJAX Interview Questions Android Interview Questions Angular 2 Interview Questions AngularJs Interview Questions Apache Presto Interview Questions Apache Tapestry Interview Questions Arduino Interview Questions ASP.NET MVC Interview Questions Aurelia Interview Questions AWS Interview Questions Blockchain Interview Questions Bootstrap Interview Questions C Interview Questions C Programming Coding Interview Questions C# Interview Questions Cakephp Interview Questions Cassandra Interview Questions CherryPy Interview Questions Clojure Interview Questions Cobol Interview Questions CodeIgniter interview Questions CoffeeScript Interview Questions Cordova Interview Questions CouchDB interview questions CSS Buttons Interview Questions CSS Interview Questions D Programming Language Interview Questions Dart Programming Language Interview Questions Data structure & Algorithm Interview Questions DB2 Interview Questions DBMS Interview Questions Django Interview Questions Docker Interview Questions DOJO Interview Questions Drupal Interview Questions Electron Interview Questions Elixir Interview Questions Erlang Interview Questions ES6 Interview Questions and Answers Euphoria Interview Questions ExpressJS Interview Questions Ext Js Interview Questions Firebase Interview Questions Flask Interview Questions Flex Interview Questions Fortran Interview Questions Foundation Interview Questions Framework7 Interview Questions FuelPHP Framework Interview Questions Go Programming Language Interview Questions Google Maps Interview Questions Groovy interview Questions GWT Interview Questions Hadoop Interview Questions Haskell Interview Questions Highcharts Interview Questions HTML Interview Questions HTTP Interview Questions Ionic Interview Questions iOS Interview Questions IoT Interview Questions Java BeanUtils Interview Questions Java Collections Interview Questions Java Interview Questions Java JDBC Interview Questions Java Multithreading Interview Questions Java OOPS Interview Questions Java Programming Coding Interview Questions Java Swing Interview Questions JavaFX Interview Questions JavaScript Interview Questions JCL (Job Control Language) Interview Questions Joomla Interview Questions jQuery Interview Questions js Interview Questions JSF Interview Questions JSP Interview Questions KnockoutJS Interview Questions Koa Interview Questions Laravel Interview Questions Less Interview Questions LISP Interview Questions Magento Interview Questions MariaDB Interview Questions Material Design Lite Interview Questions Materialize CSS Framework Interview Questions MathML Interview Questions MATLAB Interview Questions Meteor Interview Questions MongoDB interview Questions Moo Tools Interview Questions MySQL Interview Questions NodeJS Interview Questions OpenStack Interview Questions Oracle DBA Interview Questions Pascal Interview Questions Perl interview questions Phalcon Framework Interview Questions PhantomJS Interview Questions PhoneGap Interview Questions Php Interview Questions PL/SQL Interview Questions PostgreSQL Interview Questions PouchDB Interview Questions Prototype Interview Questions Pure CSS Interview Questions Python Interview Questions R programming Language Interview Questions React Native Interview Questions ReactJS Interview Questions RequireJs Interview Questions RESTful Web Services Interview Questions RPA Interview Questions Ruby on Rails Interview Questions SAS Interview Questions SASS Interview Questions Scala Interview Questions Sencha Touch Interview Questions SEO Interview Questions Servlet Interview Questions SQL Interview Questions SQL Server Interview Questions SQLite Interview Questions Struts Interview Questions SVG Interview Questions Swift Interview Questions Symfony PHP Framework Interview Questions T-SQL(Transact-SQL) Interview Questions TurboGears Framework Interview Questions TypeScript Interview Questions UiPath Interview Questions VB Script Interview Questions VBA Interview Questions WCF Interview Questions Web icon Interview Questions Web Service Interview Questions Web2py Framework Interview Questions WebGL Interview Questions Website Development Interview Questions WordPress Interview Questions Xamarin Interview Questions XHTML Interview Questions XML Interview Questions XSL Interview Questions Yii PHP Framework Interview Questions Zend Framework Interview Questions Network Architect Interview Questions

Top 15 XML Interview Questions for 2022

1) What is XML?

XML (eXtensible Markup Language) is designed to transport and store data. It has user executive tags i.e. no pre-defined tags used as in HTML. This language is considered as universal language for data on web.

2) Describe version tag in XML.

This tag declares the version of XML document as document and platform show know its version on which they are running.

3) List all features of XML.

  • Simple to learn and implement.
  • Set of rules is limited.
  • Editing is very easy as in text format.
  • Extensible as no pre-defined tags.

4) Define DOM and SAX in XML.

DOM : DOM (Document Object Model) is root of the document tree as it describes the logical structure of XML Document. SAX : SAX (Simple API for XML) is a sequential access parser i.e. it reads the file line by line.

5) Describe XSNL.

XSNL (XML Search Neutral Language) is an intermediate between Meta search interface and targeted system.

6) List the rules for Well Formed XML Document.

  • Tags used should be nested.
  • All tags should be closed.
  • XML is case sensitive so all closing tag should match exactly.
  • Only one root tag.

7) Define Valid XML Document?

If a XML document follows pre-defined rules i.e. document is structurally correct known as valid XML document.

8) What is DTD?

DTD (Document Type Definition) is defined to build legal building blocks where name of element, proper nesting, and attributes of element is defined.

9) Define the process to apply DTD to an XML Document.

  1. By making separate document and refer it to XML document.
  2. By using within XML document.

10) Define XSL?

XSL (Extensible Style sheet Language) is for expressing style sheet. It is similar to CSS that is used to describe how to display XML document.

11) Is XML or HTML similar?

No, XML describe data where as HTML display data.

12) Define element and attribute in HTML.

Element tag: all the tag that we see from start to end tag in XML Document Attribute tag: is the value that provides additional information about the element tag.

13) Define Simple and Complex element.

Simple element contains only text and has no attribute and also cannot be left empty. Complex Element may contain both element and attribute and can contain empty element.

14) Define XLink and XPointer.

XLink is a method to create a hyperlink in XML file where as when those links are pointed towards particular part in XML document known as XPointer.

15) Differentiate between CDATA and PCDATA?

CDATA is unparsed character data which cannot be parsed by XML parser. Syntax:
<![CDATA[" end with "]]>".
PCDATA is parsed character data and it is parsed by XML parser.