Question:

Which of the following stands for BOM?

Show Hint

The BOM allows JavaScript to interact with browser features, while the DOM controls the structure and content of web pages.
  • Browser of Model
  • Browser Object Model
  • Browser Object Modelling
  • Browse Object Model
Hide Solution
collegedunia
Verified By Collegedunia

The Correct Option is B

Solution and Explanation

Step 1: Understand BOM in web technology.

BOM stands for Browser Object Model. It is a programming interface provided by web browsers that allows JavaScript to interact with the browser window.

Through the Browser Object Model, JavaScript can access and control different browser features such as:

• Browser window
• Browser history
• Browser location (URL)
• Screen information
• Navigation functions

Step 2: Explain how BOM works.

The BOM provides objects like:

window – represents the browser window
navigator – gives browser information
location – provides URL information
history – controls browser navigation

Example:

window.alert("Welcome to JavaScript");
Here the window object is part of the Browser Object Model.

Step 3: Analyze other options.

Browser of Model: Incorrect terminology.

Browser Object Modelling: Not the standard meaning of BOM.

Browse Object Model: Incorrect spelling and meaning.

Step 4: Conclusion.

Therefore, BOM correctly stands for Browser Object Model.
Was this answer helpful?
0
0