How can you include an external JavaScript file using the <script>
tag?
A). <script src='script.js'>
</script>
B). <script>
src='script.js'
C). <script type='text/javascript' src='script.js'>
</script>
D). <js src='script.js'>
</js>
Which attribute of the <script>
tag is used to delay script execution until after the document is parsed?
A). type='defer'
B). async='false'
C). defer='true'
D). defer
Where is the recommended place to include external JavaScript files in an HTML document?
A). Inside the <head>
section.
B). Before the closing