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.
<OL TYPE="a" START="A"><OL TYPE="A" START="3"><OL TYPE="a" BEGIN="A"><UL TYPE="A" START ="l">
<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".