Which action occurs when a user clicks the OK button in an alert dialog box created by window.alert()?
A). The webpage navigates to a specified URL.
B). The alert message is dismissed, and script execution continues.
C). The alert message is displayed again.
D). The webpage reloads completely.
Which approach is recommended for including line breaks in an alert message using window.alert()?
A). Using HTML <br>
tags within the message string.
B). Using special escape characters like \n within the message.
C). Using multiple alert messages for each line of text.
D). Using CSS styles to format line breaks in the alert box.
When should window.alert() be used in JavaScript?
A). For complex form validation.
B). For displaying important messages or notifications.
C). For manipulating DOM elements.
D). For generating random numbers.
Which method can be used to display a confirmation dialog box in JavaScript?
A). window.alert()
B). window.confirm()
C). window.prompt()
D). window.validate()
What happens when window.alert() is executed in a JavaScript code?
A). It creates a new browser window.
B). It displays a modal dialog box with a message.
C). It opens a new tab in the browser.
D). It prints the message in the browser console.
How does window.alert() impact user interaction on a webpage?
A). It enhances user experience by providing interactive elements.
B). It disrupts user experience by interrupting the flow of the page.
C). It has no impact on user interaction.
D). It improves page performance by optimizing script execution.
What happens if you include HTML tags in the message parameter of window.alert()?
A). The HTML tags are rendered and displayed in the alert dialog box.
B). The HTML tags are ignored and treated as plain text.
C). The HTML tags trigger an error in the console.
D). The HTML tags are automatically escaped by the browser.
What does the message parameter in window.alert() represent?
A). The title of the alert dialog box.
B). The text content displayed in the alert dialog box.
C). The duration for which the alert is displayed.
D). The URL to navigate when the alert is dismissed.
How can you customize the appearance of an alert dialog box created by window.alert()?
A). By using CSS to style the alert dialog box.
B). By changing the browser settings for alert dialogs.
C). By modifying the JavaScript engine's behavior for alerts.
D). By using JavaScript libraries for alert customization.
What is the behavior of window.alert() in terms of script execution?
A). It halts the script execution until the alert is dismissed by the user.
B). It continues script execution while the alert is displayed.
C). It triggers an error in the console.
D). It pauses script execution until the user interacts with the alert.