Test your knowledge on jQuery Selectors II Quiz: Master Hierarchy & Pseudo-Selectors for Interviews. This quiz contains 10 questions.
Level: Beginner
Topic: selectors-ii
Direct child vs descendant selector
Given the HTML, which jQuery selector matches only the `<li>` elements that are direct children of `#menu`?
```html
<ul id="menu">
<li>Home</li>
<li>
Products
<ul>
<li>Phones</li>
</ul>
</li>
</ul>
```