Posts

DWPD - Viva questions & short answers

  Viva questions & short answers — based on your practical aims Below are concise, exam-ready viva questions and answers for each practical aim you listed. Use them to practise — each answer is short, direct and includes key code snippets or commands you can state during a viva. Q: How do you display an image in HTML? A: Use the <img> tag with src and alt . Example: <img src="images/photo.jpg" alt="My Photo" width="300"> . Q: How do you create a hyperlink in HTML? A: Use the <a> tag with href . Example: <a href="https://example.com">Visit</a> . For internal links use href="page.html" or href="#section" . Q: How do you embed a video in a webpage using the embed tag? A: Use <embed> or preferably <video> / <iframe> . Example (embed): <embed src="videos/sample.mp4" width="640" height="360"> . Better: <video controls...