<script>
tag?
When including multiple <script>
tags in an HTML document, what determines the order of script execution?
A). The order in which the <script>
tags appear in the HTML document.
B). The order specified by the async attribute in each <script>
tag.
C). The alphabetical order of the script filenames.
D). The defer attribute in each <script>
tag.
Which attribute can be used to include a JavaScript file asynchronously?
A). async='true'
B). defer='async'
C). type='async'
D). async
Where is the recommended place to include external JavaScript files in an HTML document?
A). Inside the <head>
section.
B). Before the closing