SCRIPT 2026 QUESTIONS WITH ANSWERS
GRADED A+
◉Multimedia Formats. Answer: Includes MPEG-4 (.mp4), MP3
(.mp3), WebM (.webm), Ogg (.ogg), and Wav (.wav) for audio and
video.
◉Flavors. Answer: Ensure backwards compatibility for browsers not
using HTML5.
◉Responsive Design. Answer: Allows pages to automatically
reformat based on browser size or screen resolution.
◉Adaptive Design. Answer: Ensures compatibility for both
computers and mobile devices.
◉Semantic HTML. Answer: Refers to tags defining the meaning of
contained content, such as <header>, <footer>, and <article>.
, ◉APIs. Answer: Sets of definitions facilitating website or application
building for specific functions like background execution and local
database management.
◉Supported Audio/Video Standards. Answer: Video: MP4, WebM,
Ogg. Audio: MP3, WAV, Ogg.
◉Page Structure. Answer: Includes <html>, <head>, <title>, and
<body> defining the layout of an HTML document.
◉Inline Elements. Answer: Do not start a new line and take
necessary width, e.g., <span>, <img>, <a>.
◉Block Elements. Answer: Start a new line and take full width, e.g.,
<div>, <h1-h6>, <p>, <form>.
◉<strong>, <em>. Answer: Strong for bold text, Em for italicized
text.
◉<a>. Answer: Defines a hyperlink with the href attribute specifying
the URL.
◉Selector, Property, Value, Rule. Answer: Selector: h1, Property:
color, Value: blue, Rule: h1 { color:blue; }