Why is the XML InfoSet specification different from the Xml DOM? What does the InfoSet attempt to solve ?
Answer / saxena
"The XML Information Set (Infoset) defines a data model for XML. The Infoset describes the abstract representation of an XML Document. Infoset is the generalized representation of the XML Document, which is primarily meant to act as a set of definitions used by XML technologies to formally describe what parts of an XML document they operate upon.
The Document Object Model (DOM) is one technology for representing an XML Document in memory and to programmatically read, modify and manipulate a xml document.
Infoset helps defining generalized standards on how to use XML that is not dependent or tied to a particular XML specification or API. The Infoset tells us what part of XML Document should be considered as significant information.
Is This Answer Correct ? | 0 Yes | 0 No |
How can you sort the elements of the array in descending order?
Explain the difference between a Private Assembly and a Shared Assembly
What is the use of constructor in c# with example?
What does async mean in c#?
The int maps to which C# keyword in .NET type?
Why is c# a good programming language?
Is a char?
How to find Percentage, name ,College from a resume or document ? How to export these values to other page in C#?
Why singleton pattern is used in c#?
What does the keyword “virtual†declare for a method or property?
What debugging tools come with the .NET SDK? CorDBG
These questions were asked me in a technical interview: •If we deploy an application on multiple server (like database server, web server) then, each request should be redirected to proper server, then how you will handle it in your code? •How security pinholes will be handled in an application? •What things should be considered while writing a web application? •How will you do load/performance testing of web application? Which framework you will use for it? •How will you implement a cache for results which require a DB access? Please let me know how to write an web application considering all these points. I am not so much aware of architechural design of web application. Your guidelines will be helpful.