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.