CBSE Class 10 Computer Applications Question 10 of 31

Sample Question Paper — Question 10

Back to all questions
10
Question

Question 10

Help Anju choose the correct HTML code to generate a numbered list, with numbering starting from capital letter C.

  1. <OL TYPE="a" START="A">
  2. <OL TYPE="A" START="3">
  3. <OL TYPE="a" BEGIN="A">
  4. <UL TYPE="A" START ="l">
Answer

<OL TYPE="A" START="3">

Reason — To generate a numbered list starting from "C", we can use the following HTML code:

<OL TYPE="A" START="3">

Here, Type attribute specifies the type of numbering i.e. "A" and Start attribute specifies the starting value i.e. "3".