Multiple choice technology web technology Which method will open a new window ? popUp(PageURL,WindowName,settings); window.launch(PageURL,WindowName,settings); window.close(PageURL,WindowName,settings); window.open(PageURL,WindowName,settings); Reveal answer Fill a bubble to check yourself D Correct answer Explanation The standard JavaScript method for opening a new browser window or tab is window.open(). Other options like window.launch() or popUp() are not built-in JavaScript window methods, and window.close() is used to close an existing window.