What is the meaning of DOM element in the following statements?
Statement #1
You can add multiple classes to a single DOM
It's actually Document Object Model. HTML is used to build the DOM which is an in-memory representation of the page (while closely related to HTML, they are not exactly the same thing). Things like CSS and Javascript interact with the DOM.