Document Object Model And Event Handling - Study Mode
[#96] Which of the following is used for parsing JSON text?
Correct Answer
(B) jQuery.parseJSON()
Explanation
Solution: jQuery.parseJSON() is used for parsing JSON text.
[#97] The central object in a larger API is known as
Correct Answer
(B) Document Object Model
Explanation
Solution: The Document object does not stand alone, however. It is the central object in a larger API, known as the Document Object Model, or DOM, for representing and manipulating document content.
[#98] The paragraph āpā is a part of
Correct Answer
(D) Both body and html
Explanation
Solution: The paragraph tag belongs to both html and body tags.
[#99] The node directly above a node is called
Correct Answer
(C) parent
Explanation
Solution: The node directly above a node is the parent of that node.
[#100] The Text and Comment is part of
Correct Answer
(A) CharacterData
Explanation
Solution: The Text and Comment is part of the CharacterData Element.