Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

11. which of the following has a bug in it? click all that apply. * <h3…

Question

  1. which of the following has a bug in it? click all that apply. * <h3> cats <h3> <p> the have retractable claws <p> <li> they kill mice, insects, and birds </li> <li. they need to eat meat </li>

Explanation:

Brief Explanations

In HTML, tags are case - insensitive but should be consistent. Also, opening and closing tags must match correctly. The first option has inconsistent case for the <h3> tag. The second option has incorrect closing tag <P> instead of </p>. The fourth option has an incorrect opening tag <li. instead of <li>.

Answer:

  1. <h3> Cats <H3>
  2. <P> The have retractable claws <P>
  3. <li. They need to eat meat </li>