| Back to Questions Page |
| |
| Question |
What is the difference between asp and asp.net |
Rank |
Answer Posted By |
|
Question Submitted By :: Mustafa |
| This Interview Question Asked @ Phoenix-Technologies |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | active server page  |
| Harika |
| |
| |
| Answer | asp.net supports language independence
but asp doesn't support
In asp write the server side code along with designing code
asp.net supports designing part and server side code in
different pages  |
| O. Sathish |
| |
| |
| Question |
Why is WEB.XML file used? |
Rank |
Answer Posted By |
|
Question Submitted By :: Guest |
| This Interview Question Asked @ T3-Softwares |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Web.xml is a simple configuration setup file for the root of
web-app .here we can descript the class and path of the web
core...  |
| Harry |
| |
| |
|
|
| |
| Question |
what is the difference between xpath document and xml document? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Honeywell |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | XmlDocument and XPathDocument are based on different data
models.
XmlDocument is based on W3C XML DOM, which is object model
that
basically covers all XML syntax, including low level syntax
sugar such
as entities, CDATA sections, DTD, notations etc. That's
document-centric
model and it allows for full fidelity when loading/saving
XML documents.
XPathDocument is based on XPath 1.0 data model which is
read-only XML
Infoset-compatible data-centric object model that covers
only
semantically significant parts of XML, leaving out
insignificant syntax
details - no DTD, no entities, no CDATA, no adjacent text
nodes, only
significant data expressed as a tree with seven types of
nodes. Simple
and lightweight.  |
| Sivaramakrishna |
| |
| |
| Answer | mainly it is a part of xsl ,it is a language that is used to
acess different parts of an xml document, such as element
and attributes.  |
| Nithin Chacko Ninan |
| |
| |
| Answer | mainly it is a part of xsl ,it is a language that is used to
acess different parts of an xml document, such as element
and attributes.
xml document usually begins with the xml declaration
statement also called PI(processing instruction).  |
| Nithin Chacko Ninan |
| |
| |
| Question |
when you go for xmlTextReader and when you opt xmlDocument? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Honeywell |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | We use XMLTextReader to read XML streams.XMLdocument
can be used to edit and navigate the document.  |
| Ala |
| |
| |
| Question |
How do you access elements in XML document? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Microsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Creating Object for XML we can Access the Elements...
Microsoft Provider....  |
| Technical_sathish |
| |
| |
| Answer | This way u can access...
XmlDocument xmldoc = new XmlDocument();
xmldoc.Load(Server.MapPath("Employee.xml"));
XmlNodeList xmlnodes = xmldoc.SelectNodes
("Employee/EmpName");
DataGrid1.DataSource = xmlnodes;
DataGrid1.DataBind ();  |
| Aravazhi |
| |
| |
| Question |
How do you load XML document and perform validation of the
document?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Microsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | Using DTD we can load XML document.
using Parser of XMLSpy to perform validation of the document  |
| Dor |
| |
| |
| Question |
In what cases u used xml?
|
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Microsoft |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | For the use of web publishng  |
| Dor |
| |
| |
| Question |
what is the XML? what is the difference between XML AND HTML?
How it is used in .Net and advantages? |
Rank |
Answer Posted By |
|
Question Submitted By :: Radha |
| This Interview Question Asked @ ADP |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | XML is a eXtensible markup language. It is a subset of SGML.
XML: is not a case sensitive
HTML: is a case sensitive
XML: describes data and focus on what data is.
HTML: displays data and focus on how data looks.
XML: user defined tag.
HTML: Pre-defined tag  |
| Dor |
| |
| |
| Answer | XML is a Case Sensitive  |
| Ram |
| |
| |
| Answer | XML is use to store data while HTML is use to display data.
XML use user defined tags while HTML use Predefined tags.  |
| Piyush |
| |
| |
| Question |
Write code in xml which reads login and password ? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
| This Interview Question Asked @ Tech-Mahindra |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | <opt>
<username>testuser</username>
<password>frodo</password>
</opt>
or
<params>
<param name="action">login</param>
<param name="login">jon@doe.com</param>
<param name="password">foobar</param>
</params>  |
| Nithin Chacko Ninan |
| |
| |
| Question |
what are the advantages of xml? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | 1. Platform Independent : Uses plain-text format which is
understandable on all platforms.
2. Extensible : Customized tags can be created as per the
needs.  |
| Ashwini |
| |
| |
| Answer | it allows data interchange between different computers
it enable smart searches.
it provides user-selected view of data.  |
| Nithin Chacko Ninan |
| |
| |
| Question |
Describe the two types of processing in xml? |
Rank |
Answer Posted By |
|
Question Submitted By :: Swapna |
|
I also faced this Question!! |
© ALL Interview .com |
| Answer | <?xml version='1.0'?>
<?xml version="1.0" encoding="UTF-8" standalone="no"?>  |
| Dor |
| |
| |
| Answer | <?xml version='1.0'?>
<?xml version="1.0" encoding="UTF-8"?>  |
| Nithin Chacko Ninan |
| |
| |
|
| |
|
Back to Questions Page |