16.
What are the different ways that JavaScript can be incorporated into a web page?
Inline scripts within HTML tags.
External script files using the <script> tag.
Event handlers like onclick or onload.
Applying JavaScript through CSS styles.
Correct: A, B, C
JavaScript can be incorporated into a web page in multiple ways. Inline scripts are written directly within HTML tags using the script tag. External script files are linked to the HTML page using the src attribute of the script tag. Event handlers like onclick or onload can be used to execute JavaScript code based on specific user actions or when the page finishes loading. Applying JavaScript through CSS styles is not possible; CSS is used for styling and layout, not for executing JavaScript code.