Question: How can you select the following blockquote AND the list in a single call to jQuery() without chaining?
- `$('.quotes + .menu-first')`
- `$('.quotes .menu-first')`
- `$('.quotes, .menu-first')`
- `$('.quotes' + '.menu-first')`
Answer: The correct answer of the above question is Option C:`$('.quotes, .menu-first')`