Sovi.AI - AI Math Tutor

Scan to solve math questions

QUESTION IMAGE

16. what is the difference between <u1> and <o1>? a. <u1> is ordered, <…

Question

  1. what is the difference between <u1> and <o1>?

a. <u1> is ordered, <o1> unordered
b. <u1> bulleted, <o1> numbered
c. they are the same
d. <u1> for paragraphs, <o1> for headings

  1. what is a paragraph in html?

a. a block of text enclosed by paragraph tags
b. a section for images
c. a heading
d. part of the <head> section

  1. which correctly opens a paragraph?

a. <para>
b. <openp>
c. <p>
d. <pg>

  1. which correctly closes a paragraph?

a. <p>
b. <paragraph>
c. <closep>
d. </p>

  1. what is the purpose of the <p> tag?

a. defines a block of text
b. creates a heading
c. inserts an image
d. creates a list

  1. which is the correct use of paragraph tags?

a. <p>this is my first paragraph</p>
b. <para>this is my first paragraph</para>
c. <pg>this is my first paragraph</pg>
d. <text>this is my first paragraph</text>

  1. why is it important to close html tags properly?

a. browsers will delete your code

Explanation:

Brief Explanations
  1. In HTML, <ul> (unordered list) is bulleted and <ol> (ordered list) is numbered.
  2. A paragraph in HTML is a block of text enclosed by paragraph tags.
  3. The correct opening tag for a paragraph in HTML is <p>.
  4. The correct closing tag for a paragraph in HTML is </p>.
  5. The <p> tag defines a block of text.
  6. The correct use of paragraph tags is <p>This is my first paragraph</p>.

Answer:

  1. B. <ul> bulleted, <ol> numbered
  2. A. A block of text enclosed by paragraph tags
  3. C. <p>
  4. D. </p>
  5. A. Defines a block of text
  6. A. <p>This is my first paragraph</p>