Question
Select all choices which are true of this example.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
</head>
<body>
<a href="#last">
This is a hyperlink to a paragraph lower down on the page.
</a>
<p id="notlast" class="paragraph">
This is a paragraph.
</p>
<p id="notlast" class="paragraph">
This is also a paragraph.
</p>
<p id="last" class="paragraph, statement">
This is also a paragraph.
</p>
</body>
</html>