Question: How can you select the following blockquote AND the list in a single call to jQuery() without chaining?

  1. `$('.quotes + .menu-first')`
  2. `$('.quotes .menu-first')`
  3. `$('.quotes, .menu-first')`
  4. `$('.quotes' + '.menu-first')`

Answer: The correct answer of the above question is Option C:`$('.quotes, .menu-first')`