702). What does a History object contain?
[A]URL
[B]Parameters
[C]Attribute values
[D]Property
Show Answer
Correct Answer: URL
Notes:
Answer: a
Explanation: The history object contains the URLs visited by the user. By using history object, you can load previous, forward or any particular page using various methods.
703). The history object is a part of which object?
[A]Property
[B]Window
[C]Location
[D]Screen
Show Answer
Correct Answer: Window
Notes:
Answer: b
Explanation: The window object represents an open window in a browser. The history object belongs to the Window object.
704). How many methods are there in the History object?
Show Answer
Correct Answer: 3
Notes:
Answer: a
Explanation: There are three methods belonging to the History object namely :
back()
forward()
go()
705). What is the purpose of the method forward()?
[A]Loads any random URL in the history list
[B]Loads the previous URL in the history list
[C] Loads a specific URL from the history list
[D] Loads the next URL in the history list
Show Answer
Correct Answer: Loads the next URL in the history list
Notes:
Answer: d
Explanation: The forward() method is found in the history object. The forward() method loads the next URL in the history list.
706). How will you update the URL displayed in the location bar?
[A]location
[B] location.URL
[C]location.hash
[D]url
Show Answer
Correct Answer: location.hash
Notes:
Answer: c
Explanation: The hash property sets or returns the anchor part of a URL, including the hash sign (#). The property location.hash needs to be updated to display the updated URL in the location bar.
707). How do you add a particular state to the browsing history?
[A]pushState()
[B]replaceState()
[C] state()
[D]addstate()
Show Answer
Correct Answer: pushState()
Notes:
Answer: a
Explanation: The pushState() method adds a particular state to the browsing history. It pushes the given data onto the session history stack with the specified title and, if provided, URL.
708). What does the pushState() method do?
[A]Removes the state
[B]Adds new state
[C]Replaces the state
[D]Change the state
Show Answer
Correct Answer: Adds new state
Notes:
Answer: b
Explanation: When a web app enters a new state, it calls history.pushState() to add that state to the browsing history.
709). Which of the following method is used to replace the current history state instead of adding a new state to the browsing history?
[A]replaceState()
[B]replace(state)
[C]replace()
[D]change()
Show Answer
Correct Answer: replaceState()
Notes:
Answer: a
Explanation: The replaceState() method is used to replace the current history state instead of adding a new state to the browsing history. It updates the most recent entry on the history stack to have the specified data, title, and, if provided, URL.
710). How many parameters does the replaceState() method take?
Show Answer
Correct Answer: 3
Notes:
Answer: b
Explanation: The replaceState() updates the most recent entry on the history stack to have the specified data, title, and, if provided, URL. window.history.replaceState(stateObj, title, url) : This is just like window.history.pushState, except that the current browser state is removed from the history, so you cannot hit “back” to return to it.
711). What is the purpose of the event window.onpopstate?
[A]When a state object is replaced
[B]When a state object is added
[C]When a state object is removed
[D]When a state object is changed
Show Answer
Correct Answer: When a state object is removed
Notes:
Answer: c
Explanation: The window.onpopstate event is fired whenever a state object is removed from the browser history, which occurs on browser “back” or “forward”. The object passed into a call to pushState or replaceState is provided as the state property on the event object in the “popstate” event.