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>

Which of the following is true about inline JavaScript code execution?

A). It always executes before external JavaScript files.

B). It executes simultaneously with external JavaScript files.

C). It executes after external JavaScript files.

D). It depends on the order of inclusion in the HTML document.

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 is the purpose of using the async attribute in the <script> tag?

A). To ensure the script is executed after the document is parsed.

B). To execute the script synchronously.

C). To load the script asynchronously, improving page load performance.

D). To delay script execution until user interaction.

Which attribute can be used to include a JavaScript file asynchronously?

A). async='true'

B). defer='async'

C). type='async'

D). async