Let me work through each question step by step.
Question 1: What does HTML stand for?
HTML is a standard acronym in web development. Let me check what it stands for:
- H = Hyper
- T = Text
- M = Markup
- L = Language
So HTML stands for "HyperText Markup Language"
Looking at the options:
- HyperText Markup Language ✓ (correct)
- HyperTag Markup Language ✗
- Hyper Textualized Marking Language ✗
- HyperText Marking Language ✗
- HyperTag Makeup Language ✗
Answer for Question 1: HyperText Markup Language
---
Question 2: What does WYSIWYG stand for?
WYSIWYG is an acronym used in computing, especially for software that shows you how your document will look as you're creating it.
Breaking down the letters:
- W = What
- Y = You
- S = See
- I = Is
- W = What
- Y = You
- G = Get
So WYSIWYG stands for "What You See Is What You Get"
Looking at the options:
- What You See Is What You Get ✓ (correct)
- What You Save Is What You Get ✗
- Where You Save It Where You Go ✗
- What You See Is Where You Go ✗
- Where You See Is Where You Go ✗
Answer for Question 2: What You See Is What You Get
---
Question 3: Which of the following represents the proper use of tags in HTML?
In HTML, tags must be properly formatted:
- Opening tag starts with `<tagname>`
- Closing tag starts with `</tagname>` (note the forward slash)
- The content goes between them
- Tags must match (same name for opening and closing)
Let me check each option:
I. `<p>This is a paragraph.</p>`
- Opens with `<p>`, closes with `</p>` ✓
- This is CORRECT
II. `<p>This is a paragraph.<p>`
- Opens with `<p>`, but tries to close with `<p>` instead of `</p>`
- Missing the forward slash in closing tag
III. `<p>This is a paragraph.`
- Has opening tag but NO closing tag ✗
- Incomplete
IV. `</p>This is a paragraph.</p>`
- Starts with closing tag `</p>` which is wrong ✗
- Should start with opening tag
V. `<p>This is a paragraph.</>`
- Opens with `<p>` but closes with `</>` ✗
- The closing tag doesn't specify which tag it's closing
Only option I has the correct format with matching opening and closing tags.
Answer for Question 3: I
---
Final Answer:
1. HyperText Markup Language
2. What You See Is What You Get
3. I
Parent Tip: Review the logic above to help your child master the concept of html worksheet.