<< < 19 20 21 22 23 24 25 26 27 28 29 > >>   Sort: Rank

How was XML handled during COM times
How was XML handled during COM times? During COM it was done by using MSXML 4.0. So old languages like VB6, VC++ used MSXML 4.0 which was shipped with SP1( Service Pack 1).
2007-10-31, 8946👍, 0💬

In What scenarios will you use a DOM parser and SAX parser
In What scenarios will you use a DOM parser and SAX parser? If you do not need all the data from the XML file then SAX approach is much preferred than DOM as DOM can quiet memory intensive. In short if you need large portion of the XML document its better to have DOM. With SAX parser you have to wri...
2007-10-31, 5808👍, 0💬

What is a XML parser
What are the standard ways of parsing XML document? XML parser sits in between the XML document and the application who want to use the XML document. Parser exposes set of well defined interfaces which can be used by the application for adding, modifying and deleting the XML document contents. Now w...
2007-10-31, 9026👍, 0💬

Which are the namespaces in .NET used for XML
Which are the namespaces in .NET used for XML? “System.xml.dll” is the actual physical file which has all XML implementation. Below are the commonly used namespaces: System.Xml System.Xml.Schema System.Xml.XPath System.Xml.Xsl
2007-10-31, 5394👍, 0💬

What is element and attributes in XML
What is element and attributes in XML? In the below example invoice is the element and the invnumber the attribute. &lt;invoice invnumber=1002>&lt;/invoic e>
2007-10-31, 5519👍, 0💬

What is XSL
What is XSL? XSL (the eXtensible Stylesheet Language) is used to transform XML document to some other document. So its transformation document which can convert XML to some other document. For instance you can apply XSL to XML and convert it to HTML document or probably CSV files.
2007-10-31, 5585👍, 0💬

What is CSS
What is CSS? With CSS you can format a XML document.
2007-10-31, 5495👍, 0💬

What is CDATA section in XML
What is CDATA section in XML? All data is normally parsed in XML but if you want to exclude some elements you will need to put those elements in CDATA.
2007-10-31, 5515👍, 0💬

What is a valid XML
What is a valid XML? If XML is confirming to DTD rules then it’s a valid XML.
2007-10-31, 5615👍, 0💬

What is well formed XML
What is well formed XML? If a XML document is confirming to XML rules (all tags started are closed, there is a root element etc) then it’s a well formed XML.
2007-10-31, 5717👍, 0💬

What is DTD (Document Type definition)
What is DTD (Document Type definition)? It defines how your XML should structure. For instance in the above XML we want to make it compulsory to provide “qty” and “totalcost”, also that these two elements can only contain numeric. So you can define the DTD document and use that DTD document with in...
2007-10-31, 5895👍, 0💬

Can you explain why your project needed XML
Can you explain why your project needed XML? Remember XML was meant to exchange data between two entities as you can define your user friendly tags with ease. In real world scenarios XML is meant to exchange data. For instance you have two applications who want to exchange information. But because t...
2007-10-31, 8943👍, 0💬

Is XML meant to replace HTML
Is XML meant to replace HTML? No, they both go together one is for describing data while other is for displaying data.
2007-10-31, 5715👍, 0💬

What is the difference between XML and HTML
What is the difference between XML and HTML? XML describes data while HTML describes how the data should be displayed. So HTML is about displaying information while XML is about describing information.
2007-10-31, 5424👍, 0💬

Is XML case sensitive
Is XML case sensitive? Yes, they are case sensitive.
2007-10-31, 5797👍, 0💬

If XML does not have closing tag will it work
If XML does not have closing tag will it work? No, every tag in XML which is opened should have a closing tag. For instance in the top if I remove &lt;/discount> tag that XML will not be understood by lot of application.
2007-10-31, 8644👍, 0💬

What is ROOT element in XML
What is ROOT element in XML? In our XML sample given previously &lt;invoice>&lt;/invoi ce>tag is the root element. Root element is the top most elements for a XML.
2007-10-31, 5090👍, 0💬

What is the version information in XML
What is the version information in XML? “version” tag shows which version of XML is used.
2007-10-31, 7104👍, 0💬

What is XML
What is XML? XML (Extensible markup language) is all about describing data. Below is a XML which describes invoice data. &lt;?xml version="1.0" encoding="ISO-8859-1"?> &lt;invoice> &lt;productname>Shoes &lt;qty>12 &lt;totalcost>100 &lt;discount>10 &lt;/invoice> An XML tag...
2007-10-31, 5281👍, 0💬

How do you estimate maintenance project and change requests
How do you estimate maintenance project and change requests?
2007-10-30, 7826👍, 0💬

What is SMC approach of estimation
What is SMC approach of estimation?
2007-10-30, 9287👍, 0💬

What is COCOMO I, COCOMOII and COCOMOIII
What is COCOMO I, COCOMOII and COCOMOIII? In CD we have a complete free PDF tutorial of how to prepare software quotation. It has all the estimation technology that today’s software industry uses.
2007-10-30, 7580👍, 0💬

Do you know Use Case points
Do you know Use Case points? In CD we have a complete free PDF tutorial of how to prepare software quotation. It has all the estimation technology that today’s software industry uses.
2007-10-30, 5293👍, 0💬

What is your company’s productivity factor
What is the FP per day in your current company?
2007-10-30, 7578👍, 0💬

<< < 19 20 21 22 23 24 25 26 27 28 29 > >>   Sort: Rank