Complete the sentence to describe filtering: "Filtering means selecting items that {{BLANK_1}} a condition."
Filtering means selecting items that [1] a condition.Filtering means choosing only the items that meet a certain condition, like picking only red apples from a basket.
Complete the sentence: "A condition in filtering usually uses {{BLANK_1}} to compare values."
A condition in filtering usually uses [1] to compare values.
Conditions use operators like >, <, == to compare values and decide which items to keep.
Fix the sentence: "To filter numbers greater than 10, use the condition: number {{BLANK_1}} 10."
To filter numbers greater than 10, use the condition: number [1] 10.
The symbol > means 'greater than', so 'number > 10' selects numbers bigger than 10.
Fill both blanks to complete the filtering rule: "Select items where {{BLANK_1}} is {{BLANK_2}} 5."
Select items where [1] is [2] 5.
We select items where the value is less than 5, meaning values smaller than 5.
Fill all three blanks to complete the filtering statement: "Keep items where {{BLANK_1}} {{BLANK_2}} 10 and {{BLANK_3}} {{BLANK_2}} 20."
Keep items where [1] [2] 10 and [3] [2] 20.
This means keep items where age > 10 and score > 20, selecting items with age and score greater than those numbers.