Multiple choice technology programming languages

All the HTML objects like Form, Select, Textarea and others are implicitly an instance of Element as well

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
B Correct answer
Explanation

HTML objects inherit from specific interfaces in the DOM hierarchy, not directly from Element. Form objects inherit from HTMLFormElement, Select from HTMLSelectElement, Textarea from HTMLTextAreaElement, etc. While these ultimately inherit from Element in the prototype chain, they are not 'implicitly an instance of Element' - they're instances of their specific interfaces.