Answer & Solution
<script> tag is beneficial when the script can be loaded asynchronously and executed after the document is parsed. This allows the HTML content to be fully loaded before script execution, improving page loading performance.
<script> tag?
<script> tag is beneficial when the script can be loaded asynchronously and executed after the document is parsed. This allows the HTML content to be fully loaded before script execution, improving page loading performance.
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 happens if the src attribute is used along with inline JavaScript code inside the <script> tag?
A). The inline code is ignored, and only the external file specified in src is loaded.
B). Both the inline code and the external file specified in src are loaded.
C). The browser throws an error because the src attribute cannot be used with inline code.
D). Only the inline code is executed, and the external file specified in src is ignored.
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.
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
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 including the defer attribute in a <script> tag?
A). To execute the script asynchronously.
B). To delay script execution until after the document is parsed.
C). To specify the scripting language used in the script.
D). To load an external script file.
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
What attribute of the <script> tag allows asynchronous loading of scripts?
A). type='async'
B). async='true'
C). defer='async'
D). async
How does the browser handle the execution of a <script> tag with the defer attribute?
A). It delays script execution until after the document is parsed, maintaining script order.
B). It executes the script as soon as it's available, even if the document is still parsing.
C). It waits for user interaction before executing the script.
D). It prevents the script from executing until the user interacts with the page.
What is the purpose of the type attribute in the <script> tag?
A). It specifies the version of HTML used in the document.
B). It specifies the scripting language used in the script.
C). It defines the content type of the script file.
D). It indicates whether the script is inline or external.