✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Consider the following HTML code
<h3> Exam Format </h3><p id="thetitle">The exam will be multiple choice</p>
and the following JavaScript code which appears below it in a <script> element
element = document.getElementById("thetitle");document.write("<p>"+element.nodeName+"</p>");What text will be written by document.write?