Where is the recommended place to include external JavaScript files in an HTML document?

A). Inside the <head> section.

B). Before the closing tag.

C). After the opening tag.

D). Inside the <body> section, anywhere.

What is the purpose of the <noscript> tag in HTML?

A). It specifies that JavaScript should not be executed on the page.

B). It provides fallback content for browsers that do not support JavaScript.

C). It includes external JavaScript files in the document.

D). It allows asynchronous loading of scripts.

What is the purpose of using external JavaScript files instead of inline code?

A). To reduce code redundancy and promote code reusability.

B). To execute JavaScript code asynchronously.

C). To ensure inline code executes before external code.

D). To improve security by isolating JavaScript code.

What is the correct way to include an inline JavaScript code block using the <script> tag?

A). <script type='text/javascript'>...</script>

B). <script inline>...</script>

C). <script>

D). <js>...</js>