Answer & Solution
<script>
tag is used to specify the scripting language, such as text/javascript. It helps browsers identify the type of script being used and handle it accordingly.
<script>
tag?
<script>
tag is used to specify the scripting language, such as text/javascript. It helps browsers identify the type of script being used and handle it accordingly.
Which attribute is used to specify the location of an external JavaScript file in the <script>
tag?
A). href
B). url
C). src
D). location
Which scenario is ideal for using the async attribute in the <script>
tag?
A). When the script must be executed in a specific order.
B). When the script contains critical functionality that should not be delayed.
C). When the script can be executed independently and does not depend on other scripts or document elements.
D). When the script must be executed after the document is parsed.
In which scenario is it beneficial to use the defer attribute in the <script>
tag?
A). When the script should be executed synchronously.
B). When the script is critical for page functionality and must execute immediately.
C). When the script can be loaded asynchronously and executed after the document is parsed.
D). When the script must be executed before the document is fully loaded.
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.
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
D). Inside the <body>
section, anywhere.
What attribute of the <script>
tag allows asynchronous loading of scripts?
A). type='async'
B). async='true'
C). defer='async'
D). async
Which attribute can be used to include a JavaScript file asynchronously?
A). async='true'
B). defer='async'
C). type='async'
D). async
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>
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 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