Question: These two script tags show different ways of using jQuery's `ready()` method. What is true about both approaches?
- The code inside them can manipulate the DOM safely, knowing the browser has loaded it fully.
- The code inside them can manipulate images on the page safely, knowing they have fully downloaded to the browser.
- The code inside them will be run exactly once per user session.
- The code inside them is not aware of the DOM.
Answer: The correct answer of the above question is Option A:The code inside them can manipulate the DOM safely, knowing the browser has loaded it fully.