What attribute of the <script> tag allows asynchronous loading of scripts?

A). type='async'

B). async='true'

C). defer='async'

D). async

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.