1.
How can you include an external JavaScript file using the <script> tag?
2.
What is the purpose of the type attribute in the <script> tag?
3.
Where is the recommended place to include external JavaScript files in an HTML document?
4.
What attribute of the <script> tag allows asynchronous loading of scripts?
5.
Which attribute of the <script> tag is used to delay script execution until after the document is parsed?
6.
What is the correct way to include an inline JavaScript code block using the <script> tag?
7.
What happens if the src attribute is used along with inline JavaScript code inside the <script> tag?
8.
What is the purpose of including the defer attribute in a <script> tag?
9.
Which scenario is ideal for using the async attribute in the <script> tag?
10.
What is the purpose of the <noscript> tag in HTML?