Question: The image below has float: left applied. Text wraps the float on the right and bottom. How would you force the second paragraph to start underneath the float, leaving a gap after the preceding paragraph?

  1. Apply `float: left` to the second paragraph.
  2. Apply `clear: right` to the floated item.
  3. Apply `clear: left` to the second paragraph.
  4. Apply `clear: left` to the floated item.

Answer: The correct answer of the above question is Option C:Apply `clear: left` to the second paragraph.