CLASS X HTML PRACTICE QUESTIONS 12 AUG 2026
CBSE Class X Computer Applications (Code 165) Exclusive HTML Coding Practice Section A: Output & Debugging Questions (10 Marks) Q1. Predict the exact output of the following HTML code snippet: (2 Marks) < html > < body > < h2 > Learning HTML </ h2 > < p > HONESTY IS THE BEST POLICY </ p > </ body > </ html > Q2. Identify and correct the errors in the following HTML source code: (3 Marks < HTML > < BODY > < TITLE > My First Webpage </ TITLE > < H1 align = center > Welcome To My Site < P > This is a paragraph with < B > bold text and < I > italics text </ B > </ I > . </ BODY > </ HTML > Q3. Write the output for the given HTML list code: (5 Marks) <HTML> <HEAD> <TITLE> Ordered list </TITLE> </HEAD> <BODY> < ol type = "A" start = "2" > < li > Apple </ li > < li ...