All Practice Exams

100+ Free Assam ASSEB HSLC Elective Computer Science Practice Questions

Prepare for the Assam ASSEB Class 10 HSLC Elective Computer Science 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 HSLC Elective Computer Science Exam

3 Hours

Total duration of ASSEB HSLC Elective CS theory paper

Assam State School Education Board (ASSEB)

30%

Minimum pass mark required in elective computer science

ASSEB Board Regulations

100

Practice questions included in this prep question bank

OpenExamPrep

Class 10

Target secondary education standard under Assam ASSEB

ASSEB / SEBA Syllabus

Master Assam ASSEB Class 10 Computer Science with 100 practice questions covering C programming syntax, arrays, functions, HTML/CSS, DBMS/SQL, and network security.

Sample Assam ASSEB HSLC Elective Computer Science Practice Questions

Try these sample questions to test your Assam ASSEB HSLC Elective Computer Science exam readiness. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1Which standard C header file must be included to use the printf() and scanf() functions?
A.<stdio.h>
B.<conio.h>
C.<math.h>
D.<string.h>
Explanation: The <stdio.h> (Standard Input Output) header file contains the declarations of standard input and output functions such as printf() and scanf().
2Which of the following is a valid keyword in the C programming language?
A.integer
B.volatile
C.string
D.boolean
Explanation: In ANSI C, 'volatile' is one of the 32 standard reserved keywords. Key data type keywords in C are int, float, double, char, etc.
3Which format specifier is used in printf() to print a single character in C?
A.%d
B.%s
C.%c
D.%f
Explanation: The %c format specifier is used in C formatted input/output functions to represent a single character variable.
4Which of the following is an INVALID variable name (identifier) in C?
A._totalAmount
B.student_mark
C.count2
D.2ndNumber
Explanation: In C programming, an identifier cannot start with a digit. Variable names must begin with a letter (A-Z, a-z) or an underscore (_).
5What is the output of the C expression: 17 % 5 ?
A.2
B.3
C.3.4
D.0
Explanation: The modulus operator (%) returns the remainder of integer division. 17 divided by 5 yields a quotient of 3 with a remainder of 2 (17 = 5 * 3 + 2).
6What is the typical memory size reserved for a standard 'char' data type in C?
A.2 bytes
B.1 byte
C.4 bytes
D.8 bytes
Explanation: A 'char' data type in C occupies exactly 1 byte (8 bits) of memory, capable of storing ASCII character values.
7In the C statement 'scanf("%d", &age);', what does the '&' symbol represent?
A.Bitwise AND operator
B.Logical AND operator
C.Address-of operator
D.Value-at-address operator
Explanation: In scanf(), the unary '&' operator is the address-of operator. It passes the memory address of variable 'age' so scanf can store the input value directly in that memory location.
8Which preprocessor directive is used to define symbolic constants in C?
A.#include
B.#constant
C.#set
D.#define
Explanation: The #define preprocessor directive is used to create macro definitions and symbolic constants (e.g., #define PI 3.14159).
9Given int x = 5; int y = ++x; what are the values of x and y after execution?
A.x = 6, y = 6
B.x = 6, y = 5
C.x = 5, y = 6
D.x = 5, y = 5
Explanation: The pre-increment operator ++x increments the value of x by 1 first (x becomes 6) and then assigns the updated value to y (y becomes 6).
10How is a multi-line comment correctly written in C?
A.// This is a comment //
B./* This is a comment */
C.<!-- This is a comment -->
D.# This is a comment
Explanation: Multi-line comments in C begin with /* and end with */.

About the Assam ASSEB HSLC Elective Computer Science Exam

The Assam ASSEB Class 10 HSLC Elective Computer Science examination evaluates students' foundational knowledge in programming and computer applications. Designed specifically for Class 10 students under the Assam board, this 100-question practice bank covers C programming basics, control loops, arrays, user-defined functions, HTML/CSS web authoring, relational DBMS, basic SQL statements, computer networking fundamentals, and cyber ethics security standards.

Assessment

Theory examination evaluating foundational C programming syntax, logic building, database management, HTML/CSS layout markup, and network security ethics.

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 HSLC Elective Computer Science Exam Content Outline

20%

C Programming Fundamentals & Data Types

Syntax, tokens, data types (int, float, char), constants, variables, operators, expression evaluation, stdio.h, printf, and scanf.

15%

Control Structures & Loops in C

Conditional branching (if, if-else, nested if, switch-case) and iteration constructs (for loop, while loop, do-while loop, break, continue).

15%

Arrays & String Handling in C

1D and 2D array declaration, indexing, traversal, matrix manipulation, strings as character arrays, and string.h functions (strlen, strcpy, strcat, strcmp).

10%

User-Defined Functions in C

Function prototypes, function definition, function parameters, return values, call by value mechanism, scope of variables, and modularity.

15%

HTML & CSS Web Design Basics

HTML structure tags, headings, lists, tables, forms, hyperlinks, images, inline/internal/external CSS styling, box model, and CSS selectors.

13%

Database Management System (DBMS) & SQL

Relational database concepts, primary key, foreign key, database tables, fields, records, and SQL queries (SELECT, INSERT, UPDATE, DELETE, CREATE).

7%

Computer Networking & Web Technologies

Network types (LAN, MAN, WAN), network topologies (bus, star, ring, mesh), hardware devices (hub, switch, router, modem), TCP/IP, HTTP/HTTPS, and IP addressing.

5%

Cyber Ethics, Security & IT Act

Malware, virus, worm, trojan, spyware, firewall, phishing, digital signatures, safe browsing practices, copyright, and IT Act 2000 in India.

How to Pass the Assam ASSEB HSLC Elective Computer Science Exam

What You Need to Know

  • Passing score: 30% pass mark in theory examination
  • Assessment: Theory examination evaluating foundational C programming syntax, logic building, database management, HTML/CSS layout markup, and network security ethics.
  • 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 HSLC Elective Computer Science Study Tips from Top Performers

1Practice tracing C program loops step-by-step with variable tracetables to predict exact program outputs.
2Understand operator precedence in C, especially modulus (%) and integer division (/), to solve expression evaluation questions.
3Memorize the syntax of string functions in string.h like strlen, strcpy, strcat, and strcmp.
4Create simple HTML form and table snippets to understand how tags like <form>, <input>, <table>, <tr>, <td> work.
5Differentiate clearly between primary keys and foreign keys in database management systems.

Frequently Asked Questions

What topics are included in ASSEB Class 10 Elective Computer Science?

The curriculum covers basic C programming (data types, loops, arrays, functions), web design with HTML & CSS, DBMS & basic SQL commands, computer networking topologies/devices, and cyber ethics security.

What is the passing criteria for ASSEB HSLC Computer Science?

Students must secure at least 30% marks in theory to clear the elective computer science examination under ASSEB rules.

Are C programming output questions asked in the ASSEB Class 10 exam?

Yes, questions routinely ask for output prediction of loop statements, conditional expressions, array indexing, and string operations.

What web technologies does the ASSEB Class 10 syllabus cover?

HTML5 elements for content structure (lists, tables, forms, hyperlinking) and basic CSS properties (colors, fonts, box model borders/padding/margins).

How are DBMS and SQL questions framed in the exam?

Questions test relational database definitions (tables, keys, records), database primary/foreign keys, and standard SQL statements (SELECT, INSERT, UPDATE, DELETE).