All Practice Exams

100+ Free Assam ASSEB HS Multimedia and Web Technology Practice Questions

Prepare for the Assam ASSEB Class 11-12 Higher Secondary Multimedia and Web Technology Examination exam with instant access — no signup required.

✓ No registration✓ No credit card✓ No hidden fees✓ Start practicing immediately
100+ Questions
100% Free

Loading practice questions...

2026 Statistics

Key Facts: Assam ASSEB HS Multimedia and Web Technology Exam

3 Hours

Total duration of ASSEB HS Multimedia & Web Tech theory examination

Assam State School Education Board (ASSEB)

30%

Minimum pass percentage required for secondary certification

ASSEB Regulations

100

Curriculum-aligned practice MCQs included in this question bank

OpenExamPrep

Class 11 & 12

Target academic grade levels in Assam higher secondary schools

ASSEB / AHSEC Syllabus

Prepare for the Assam ASSEB Class 11-12 Multimedia and Web Technology exam with 100 curriculum-aligned practice questions covering HTML/CSS, JavaScript, audio/video compression, vector/raster graphics, animation keyframes, and web hosting security.

Sample Assam ASSEB HS Multimedia and Web Technology Practice Questions

Try these sample questions to test your Assam ASSEB HS Multimedia and Web Technology exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1Which HTML element is used to create a hyperlink to another web page or document?
A.<link>
B.<a>
C.<href>
D.<url>
Explanation: The <a> (anchor) element defines a hyperlink in HTML, using the href attribute to specify the destination URL. Clicking the anchor text navigates the browser to the specified web address.
2Which attribute of the <img> tag specifies alternative text for an image if it fails to load?
A.title
B.src
C.alt
D.description
Explanation: The 'alt' (alternate text) attribute provides a text description of an image for screen readers and displays if the image file cannot be retrieved. It improves web accessibility and search engine optimization.
3What is the correct HTML element for inserting a single line break without starting a new paragraph?
A.<break>
B.<lb>
C.<br>
D.<p>
Explanation: The <br> tag inserts a simple line break within text blocks. It is an empty (void) element in HTML and does not require a closing tag.
4Which HTML element is used to create an unordered bulleted list?
A.<ol>
B.<ul>
C.<list>
D.<dl>
Explanation: The <ul> element defines an unordered list, where items are marked with bullet points by default. List items inside <ul> are declared using <li> tags.
5In HTML5, which semantic element represents introductory content or a set of navigational links for a document?
A.<head>
B.<header>
C.<top>
D.<section>
Explanation: The <header> tag is an HTML5 semantic container used for introductory content, headings, author info, or navigation bars. It differs from <head>, which contains metadata.
6Which HTML tag is used to define a row within a table?
A.<td>
B.<th>
C.<tr>
D.<table-row>
Explanation: The <tr> tag stands for 'table row' and encloses individual table data (<td>) or table header (<th>) cells within a row. Every row in an HTML table is bounded by <tr> tags.
7When submitting an HTML form, which HTTP method appends form data directly to the URL as visible query parameter pairs?
A.POST
B.GET
C.PUT
D.SUBMIT
Explanation: The GET method appends form key-value pairs to the target URL after a '?' character. Because data is exposed in the address bar and URL length is limited, GET is suitable for search queries but unsuitable for sensitive data.
8Which HTML form input type creates a group of options from which a user can select only one option at a time?
A.checkbox
B.radio
C.select-one
D.button
Explanation: Input elements with type='radio' sharing the same 'name' attribute form a mutually exclusive group where selecting one automatically deselects all others.
9Which HTML tag is used to embed another independent HTML document within the current page?
A.<embed>
B.<object>
C.<iframe>
D.<frame>
Explanation: The <iframe> (inline frame) element embeds an external HTML document inside the current web page. It uses the src attribute to designate the source URL.
10Which CSS property is used to set the background color of an HTML element?
A.color
B.background-color
C.bgcolor
D.canvas-color
Explanation: The 'background-color' property sets the background color of an element using color names, hex values, RGB, or HSL notation. The 'color' property sets the text color instead.

About the Assam ASSEB HS Multimedia and Web Technology Exam

The Assam ASSEB Class 11-12 Higher Secondary Multimedia and Web Technology examination assesses senior secondary students on web design, programming, and digital media technologies. Designed for Class 11 and 12 curriculum under the Assam board, this 100-question practice bank covers HTML tags, form controls, CSS box model layout, JavaScript DOM manipulation and validation, MP3/AAC audio encoding, MP4/H.264 video compression, vector vs. raster computer graphics, animation tweening and keyframing, web hosting over FTP, and HTTPS security cookies.

Assessment

Theory examination evaluating web authoring (HTML/CSS), client-side scripting (JavaScript), digital audio/video compression formats, vector/raster graphics, animation keyframing, and web hosting security.

Time Limit

3 hours (180 minutes)

Passing Score

30% pass mark in theory examination

Exam Fee

Standard registration fee administered by ASSEB (Assam State School Education Board (ASSEB))

Assam ASSEB HS Multimedia and Web Technology Exam Content Outline

25%

Web Authoring with HTML & CSS

HTML structure tags, lists, tables, forms, input controls, CSS inline/internal/external styling, selectors, properties, and the box model.

20%

Client-Side Scripting with JavaScript

JavaScript syntax, variables, operators, conditional branching, loops, functions, DOM element manipulation, event handling, and form validation.

20%

Digital Multimedia & Audio/Video Compression

Audio and video formats (MP3, WAV, AAC, MP4, H.264), compression techniques (lossy vs. lossless, spatial vs. temporal), sampling rate, bit depth, and bit rate.

15%

Vector & Raster Computer Graphics

Raster image formats (JPEG, PNG, GIF, TIFF), resolution (DPI/PPI), vector graphics (SVG), color models (RGB, CMYK, HSL), and color depth.

10%

Animation & Keyframing Fundamentals

Keyframes, timeline, frame rate (FPS), tweening (motion vs. shape), morphing, onion skinning, and interactive multimedia integration.

10%

Web Hosting, FTP & Security Basics

Domain Name System (DNS), FTP file uploads, HTTP/HTTPS encryption, cookies (session vs. persistent), web server software, and basic security.

How to Pass the Assam ASSEB HS Multimedia and Web Technology Exam

What You Need to Know

  • Passing score: 30% pass mark in theory examination
  • Assessment: Theory examination evaluating web authoring (HTML/CSS), client-side scripting (JavaScript), digital audio/video compression formats, vector/raster graphics, animation keyframing, and web hosting security.
  • Time limit: 3 hours (180 minutes)
  • Exam fee: Standard registration fee administered by ASSEB

Keys to Passing

  • Complete 500+ practice questions
  • Score 80%+ consistently before scheduling
  • Focus on highest-weighted sections
  • Use our AI tutor for tough concepts

Assam ASSEB HS Multimedia and Web Technology Study Tips from Top Performers

1Practice building HTML forms with various input types (text, radio, checkbox, submit) and writing JavaScript functions for client-side input validation.
2Master the CSS Box Model calculations including element width, padding, border, and margin properties.
3Understand the difference between lossy audio formats like MP3/AAC and uncompressed audio formats like WAV.
4Learn the core computer graphics color models: additive RGB for digital displays and subtractive CMYK for print media.
5Differentiate between motion tweening, shape tweening, and frame-by-frame computer animation techniques.

Frequently Asked Questions

What key topics are covered in ASSEB Higher Secondary Multimedia & Web Technology?

The syllabus covers HTML/CSS web authoring, JavaScript client-side programming, digital audio & video compression formats (MP3, AAC, MP4, H.264), vector & raster computer graphics, animation keyframing, FTP web hosting, and HTTPS security cookies.

What is the minimum pass mark for ASSEB HS Multimedia and Web Technology?

Students must achieve a minimum of 30% marks in theory and practical components as stipulated by the Assam State School Education Board regulations.

How are JavaScript questions structured in the exam?

Questions evaluate syntax, variable scoping (var, let, const), operators, DOM selection with getElementById(), event handling, and form input validation.

What multimedia compression concepts are essential for this course?

Understanding lossy vs. lossless compression, audio sampling rate (44.1 kHz), bit depth, bit rate (kbps), video codecs (H.264/AVC), spatial vs. temporal video compression, and container formats (MP4, WAV, AVI).

What is the distinction between raster and vector graphics in the curriculum?

Raster graphics (JPEG, PNG, GIF) rely on pixel grids subject to pixelation upon scaling, while vector graphics (SVG) use mathematical primitives that scale infinitely without quality loss.