Question: Which statement references the DOM node created by the code shown?
- `Document.querySelector('class.pull')`
 - `document.querySelector('.pull');`
 - `Document.querySelector('pull')`
 - `Document.querySelector('#pull')`
 
Answer: The correct answer of the above question is Option B:`document.querySelector('.pull');`