List in HTML Exercise I


Ques 1 List


What is the correct HTML tag for creating a list items?
  a) <list>
  b) <ol>
  c) <ul>
  d) <li>


d is the correct option




Ques 2 List


When should you use <ol> and <ul> elements?
  a) Use <ul> when you want a bulleted list and <ol> when you want a numbered list.
  b) Use <ol> when you want a bulleted list and <ul> when you want a numbered list.
  c) Use <ol> when you have a list of items in which the order of the items matters.
  d) Use <ul> when you have a list of items that could go in any order.


a is the correct option