Question: Which statement references the DOM node created by the code shown?

  1. `Document.querySelector('class.pull')`
  2. `document.querySelector('.pull');`
  3. `Document.querySelector('pull')`
  4. `Document.querySelector('#pull')`

Answer: The correct answer of the above question is Option B:`document.querySelector('.pull');`