answersLogoWhite

0

Which is the efficient way of XML parsing and why?

Updated: 9/17/2019
User Avatar

Wiki User

10y ago

Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: Which is the efficient way of XML parsing and why?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is XML Parsing?

Extensive MarkUp languageXML parsing is when you convert an XML document into an XML DOM object - which can then be manipulated with a JavaScript.


C parsing xml and deposit structure?

You can go with XLinq, XmlReader, XPathNavigator or even regular expressiont To parse C in xml. New methods also include using a code gen or parsing tool.


What is msxml.6.0.parser?

It is the sixth version of a tool from Microsoft that is used for parsing XML files.


What is the XML database used for?

xml is used on webpages and web services and can also be used to create data bases and to store and carry data.


Why XML is used while concering search engine optimization?

XML is just more efficient for creating "link juice" for your website and creating a sitemap.


How a way of describing XML data?

XML uses XSL to describe data


How do you create a XML file from Scratch?

it is the same way to create xml file by converting into txt you have to use the correct xml syntax ie <xml> this is to denote strat of xml file and this </xml> denotes end of xml file. You have to use the right xml code or your xml file wont be valid or well formed.


What is java DTD?

A DTD is the original type of XML schema. XML Schemas are used to formally describes the contents of an XML document. An XML schema describes the shape of the XML document, defining the data, sub elements or attributes it can contain, along with the number of times given entities can occur. A document type definition (DTD) is a set of markup declarations that define a document type for an SGML-family markup language (SGML, XML, HTML). A Document Type Definition (DTD) defines the legal building blocks of an XML document. It defines the document structure with a list of legal elements and attributes.


Hire someone for XML document managemetn?

form_title=Hire someone for XML document managemetn form_header=Coordinate your XML document needs In what way are your xml documents generated?=_ How many xml documents do you generate daily?=_ How often do you currently access your xml documents?=_


Difference between top down and bottom up parsing?

Top-down parsing starts with the input and works its way down to the start symbol, while bottom-up parsing starts with the input and works its way up to the start symbol. Top-down parsing uses predictive parsing techniques, such as LL and recursive descent, while bottom-up parsing uses shift-reduce or LR parsing algorithms.


What is the importance of XML?

xml is a markup language that is use to describe data, it doesn't do anything itself as it is not a programming language. You use xml to carry information in a standardised way across different systems so that it can be carried and read without any corruption or compatibility problems.


Is XML an advanced version of HTML?

As a programmer, processing pure XML is easier that HTML. This is because XML follows a very strict set of standards. HTML (such as HTML 4 or 5) does not. For instance, all XML tags close, either by a closing pair, or a "self-closing" tag. e.g.: <tag></tag> Or <tag /> Whereas HTML tags such as line-break and image don't follow the same pattern. <img> <br> By adhere to stricter rules, XML is easier for me to parse.