250+ TOP MCQs on Scripting Documents and Answers

Javascript Multiple Choice Questions on “Scripting Documents”.

1. The central object in a larger API is known as __________
a) Document Object Material
b) Document Object Model
c) Binary Object Model
d) Data object model

Answer: b
Clarification: Document Object Model (DOM) is a platform and language-neutral interface that allows programs and scripts to dynamically access and update the content, structure, and style of a document. It is the central object in a larger API, known as the Document Object Model, or DOM, for representing and manipulating document content.

2. The paragraph “p” is a part of __________
a) h1
b) body
c) html
d) both body and html

Answer: d
Clarification: The paragraph tag belongs to both html and body tag. It is used to write paragraph on html pages.

3. The node directly above a node is called __________
a) sibling
b) child
c) parent
d) ancestors

Answer: c
Clarification: The node directly above a node is the parent of that node. In HTML, the document itself is the parent node of the HTML element, HEAD and BODY are child nodes of the HTML element.

4. The Text and Comment is part of __________
a) CharacterData
b) Document
c) Attr
d) Element

Answer: a
Clarification: The CharacterData abstract interface represents a Node object that contains characters. This is an abstract interface, meaning there aren’t any object of type CharacterData. The Text and Comment is part of the CharacterData Element.

5. The nodes that represent HTML elements are the __________
a) Subclass nodes
b) HTML nodes
c) Window nodes
d) Element nodes

Answer: d
Clarification: The nodes that represent HTML elements are Element nodes. The various html elements include h1, p, div etc.

6. Which of the following is/are of Text nodes?
a) Text
b) Comment
c) Both Text and Comment
d) h1

Answer: c
Clarification: Both Text and Comment are basically strings of text, and these nodes are much like the Text nodes that represent the displaying text of a document.

7. Which is not the way to query a document for an element or elements?
a) With a specified id attribute
b) Matching the specified CSS selector
c) With the specified tag name
d) without the specified CSS class or classes

Answer: d
Clarification: The DOM defines a number of ways to select elements; you can query a document for an element or elements:

  1. with a specified id attribute;
  2. with a specified name attribute;
  3. with the specified tag name;
  4. with the specified CSS class or classes; or
  5. matching the specified CSS selector

8. Which of the following can be used to select HTML elements based on the value of their name attributes?
a) getElementByName()
b) getElementsByName()
c) getElementsName()
d) getElementName()

Answer: b
Clarification: The getElementsByName() method returns a collection of all elements in the document with the specified name (the value of the name attribute), as a NodeList object.

var radiobuttons = document.getElementsByName("favorite_color");

9. Which of the following property refers to the root element of the document?
a) documentElement
b) elementdocument
c) rootdocument
d) rootelement

Answer: a
Clarification: The documentElement property of the Document class refers to the root element of the document. This is always an HTML element. The documentElement property returns the documentElement of the document, as an Element object.

10. The return type of getElementsByClassName() is __________
a) DOM
b) Document
c) Node
d) NodeList

Answer: d
Clarification: The getElementsByClassName() method returns a collection of all elements in the document with the specified class name, as a NodeList object. The other methods of returning nodelist objects are getElementsByTagName(), getElementbyId() etc.

Leave a Reply

Your email address will not be published. Required fields are marked *