Question: Which CSS selector can you use to select all elements on your page associated with the two classes header and clear?
- `."header clear" {}`
 - `header#clear {}`
 - `.header.clear {}`
 - `.header clear {}`
 
Answer: The correct answer of the above question is Option C:`.header.clear {}`