Question 24
Consider the following HTML document.
<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>IITM</title></head><body> <h2>Welcome to IITM </h2> <h3>Online Degree</h3> Courses offered <ol> <li>Foundation</li> <ul> <li>CT</li> <li>Python</li> <li>Maths-I</li> </ul> <li>Diploma</li> <ul> <li>PDSA</li> <li>MAD-I</li> <li>MAD-II</li> </ul> </ol></body></html>Which of the following statements is/are correct about the above code snippet?
List Items, Foundations and Diploma are numbered 1 and 2
List Items, Foundations and Diploma are bulleted
List Items, PDSA, MAD-I and MAD-II are numbered 1, 2 and 3
List Items, PDSA, MAD-I and MAD-II are bulleted