Question: What is the difference between $('p').find('a') and $('p').children('a')?

  1. `find() traverses only one level down, whereas children() selects anything inside the original element`
  2. `$('p').find('a') finds all paragraphs inside links, whereas $('p').children('a') finds links within paragraph tags`
  3. `.find() always searches the entire DOM tree, regardless of the original selection .children() searches only the immediate childern of an element`
  4. `children() traverses only one level down, whereas find() selects anything inside the original element`

Answer: The correct answer of the above question is Option D:`children() traverses only one level down, whereas find() selects anything inside the original element`