Beginner Web & Software Development
Q3 / 100

What is the DOM?

Correct! Well done.

Incorrect.

The correct answer is B) Document Object Model — a tree representation of an HTML/XML document that allows JavaScript to dynamically access and modify content

B

Correct Answer

Document Object Model — a tree representation of an HTML/XML document that allows JavaScript to dynamically access and modify content

Explanation

The DOM represents HTML as a tree of nodes. JavaScript can manipulate it: document.getElementById(), querySelector(), createElement(), appendChild(). Changes to the DOM update the rendered page.

Progress
3/100