Question: Which statement selects all img elements in the DOM tree?

  1. `Document.querySelector('img')`
  2. `Document.querySelectorAll('')`
  3. `Document.querySelectorAll('img')`
  4. `Document.querySelector('')`

Answer: The correct answer of the above question is Option C:`Document.querySelectorAll('img')`