Question: Which statement selects all img elements in the DOM tree?
- `Document.querySelector('img')`
- `Document.querySelectorAll('')`
- `Document.querySelectorAll('img')`
- `Document.querySelector('')`
Answer: The correct answer of the above question is Option C:`Document.querySelectorAll('img')`