InterviewSolution
Saved Bookmarks
| 1. |
What is document object model (DOM)?(a) convention for representing and interacting with objects in html documents(b) application programming interface(c) hierarchy of objects in ASP.NET(d) scripting languageThis question was addressed to me in an interview for internship.The origin of the question is World Wide Web in chapter TCP/IP Protocol Suite of Computer Network |
|
Answer» CORRECT choice is (a) CONVENTION for representing and interacting with OBJECTS in html documents Easy explanation: DOM is a hierarchical model i.e. a tree USED to REPRESENT an HTML or XML document. Every node of the tree an object that represents a part of the document. |
|