All Practice Exams

Free Practice Questions for Kerala Plus Two Computer Applications (DHSE)

Exam-style questions and explanations by OpenExamPrep.

✓ No registration✓ No credit card
100+ Questions
100% Free

Loading practice questions...

Exam Review

Key Facts: Kerala Plus Two Computer Applications (DHSE) Exam

100 marks

Subject total via TE + CE + PE (exact splits as notified)

DHSE Kerala Plus Two assessment pattern

~2 h + cool-off

Typical Computer Applications theory duration for practical subjects

DHSE Plus Two timetable logistics

D+ / ~30%

Common pass grade/aggregate with separate TE floor

Kerala Plus Two grading / pass criteria reporting

Mixed + practical

Official format is mixed written TE plus PE and CE, not pure MCQ

DHSE Kerala Plus Two Computer Applications assessment pattern

Not Computer Science

Commerce/Humanities CA is a distinct subject from CS under DHSE

SCERT/DHSE Higher Secondary subject catalogue

English MCQ adaptation

This free local bank is not the official mixed paper or practical substitute

OpenExamPrep practice policy

DHSE Kerala

Administrator: Directorate of Higher Secondary Education

Government of Kerala Higher Secondary system

Kerala Plus Two Computer Applications (DHSE) totals 100 marks via TE + CE + PE; theory is commonly ~2 h plus cool-off. Pass is commonly D+/~30% aggregate with ~30% in TE separately as notified. Fees are paid through schools. Distinct from Computer Science; covers C++ review, web/HTML/JS, DBMS/SQL, ERP, and ICT. This free 2026 bank is an English MCQ study adaptation — not an official paper or practical substitute.

Sample Kerala Plus Two Computer Applications (DHSE) Practice Questions

Try these sample questions to review concepts for the Kerala Plus Two Computer Applications (DHSE) exam. Each question includes a detailed explanation. Start the interactive quiz above for the full 100+ question experience with AI tutoring.

1In C++, which header is commonly included to use the standard input and output streams cin and cout?
A.<math.h>
B.<string.h>
C.<iostream>
D.<conio.h>
Explanation: The <iostream> header provides the standard input and output stream objects cin and cout (and related stream facilities) in C++. Including it is the usual first step for console I/O programs in Plus Two Computer Application labs.
2Which of the following is a valid multi-line comment style in C++?
A.// comment //
B./* comment */
C.<!-- comment -->
D.# comment
Explanation: C++ supports block comments delimited by /* and */ that can span multiple lines. Single-line comments use //, HTML comments use <!-- -->, and # starts preprocessor directives (or shell comments), not C++ block comments.
3What is the size of the bool data type conceptually representing in standard C++?
A.Always exactly 8 bits with value true or false only at the bit level
B.A 32-bit integer restricted to 0 and 1 only by the language standard
C.A floating-point type with only two possible magnitudes
D.A boolean type that stores true or false (implementation may use at least one byte of storage)
Explanation: bool is the C++ boolean type whose values are true and false. The language does not require a single-bit physical size; implementations commonly use at least one byte of storage while the logical values remain true/false.
4Which operator has the highest precedence among the following in C++?
A.+
B.*
C.&&
D.=
Explanation: Among addition (+), multiplication (*), logical AND (&&), and assignment (=), multiplication has the highest precedence. Assignment has very low precedence, and logical AND is below arithmetic operators.
5What does the C++ statement cout << a; do when a is an int variable?
A.Reads an integer from the keyboard into a
B.Writes the value of a to the standard output stream
C.Declares a as a constant output stream
D.Deletes the variable a from memory
Explanation: The insertion operator << with cout sends the value of a to the standard output stream (typically the console). Input from the keyboard uses cin with the extraction operator >>.
6Which control structure is most appropriate when a block of code must execute at least once and then repeat while a condition remains true?
A.for loop only
B.while loop only
C.do-while loop
D.switch statement only
Explanation: A do-while loop evaluates its condition after the body runs, so the body executes at least once. A while or for loop may skip the body entirely if the condition is false initially; switch selects among discrete case labels.
7In C++, which keyword is used to exit only the innermost loop or switch in which it appears?
A.exit
B.break
C.continue
D.return
Explanation: The break statement terminates the innermost enclosing loop or switch. continue skips to the next iteration of a loop, return leaves a function, and exit (from <cstdlib>) terminates the entire program.
8What is the value of the C++ expression 17 % 5?
A.3.4
B.3
C.2
D.5
Explanation: The modulus operator % yields the integer remainder after division. 17 = 5 x 3 + 2, so 17 % 5 equals 2. It does not produce a floating-point quotient.
9Which of the following correctly describes a variable declaration in C++?
A.A statement that only prints the variable's value
B.A preprocessor directive that includes a library
C.A comment that documents the program purpose
D.A statement that introduces a name and its type (and may initialize storage)
Explanation: A declaration introduces an identifier and associates it with a type so the compiler knows how to interpret the name. It may also initialize the object. Printing uses output statements; includes are preprocessor directives; comments are non-executable notes.
10In C++, what is the result type of the relational expression (a > b) when a and b are ints?
A.int always equal to a - b
B.float between 0.0 and 1.0
C.bool (true or false)
D.char holding '>' or '<'
Explanation: Relational operators such as > compare operands and produce a boolean result (true or false) in C++. They do not compute a - b as their primary result type, nor a float probability or a character symbol.

About the Kerala Plus Two Computer Applications (DHSE) Exam

Kerala Plus Two Computer Applications is the Class 12 Higher Secondary public examination Computer Applications subject under the Directorate of Higher Secondary Education (DHSE), Directorate of General Education, Government of Kerala. It is offered primarily in Commerce and Humanities combinations and is distinct from Computer Science: the SCERT Computer Application (Commerce) syllabus focuses on C++ programming review, arrays and functions, web technology, HTML web design, client-side JavaScript, web hosting, database management systems, SQL, enterprise resource planning (ERP), and trends/issues in ICT (including e-commerce and cyber security concepts). Humanities variants emphasize publishing and office-application skills more heavily while sharing web and database cores. The official assessment is a subject total of 100 marks via Terminal Evaluation (mixed written theory, commonly about 2 hours plus cool-off), Continuous Evaluation, and Practical Evaluation — not pure MCQ. Fees and exact schemes are notified by DHSE (beta.hseportal.kerala.gov.in; dhsekerala.gov.in). Pass marks are commonly described as D+ or above (~30% aggregate) with a separate ~30% floor in TE. The 100 questions on this page are a free English-language multiple-choice study adaptation with explanations; they are not a full simulation of the official mixed theory paper, practical lab, project, or CE evidence, and are not a substitute for hands-on practical work.

Exam sponsor: Directorate of Higher Secondary Education (DHSE), Kerala. The requirements and fees below concern the certification or admission exam, separate from our free practice resources.

Assessment

Official Kerala Plus Two Computer Applications is assessed as Terminal Evaluation (written theory) + Continuous Evaluation + Practical Evaluation for a subject total of 100 marks. As a practical subject (like Computer Science), TE theory is commonly near 60 marks with CE and PE making up the remainder (exact splits follow the year’s scheme). Theory duration is commonly about 2 hours plus cool-off time as notified (often ~15 minutes). The written paper is mixed format (not pure MCQ) covering SCERT Computer Application (Commerce) units such as Review of C++ Programming; Arrays; Functions; Web Technology; Web Designing using HTML; Client-Side Scripting using JavaScript; Web Hosting; Database Management System; Structured Query Language; Enterprise Resource Planning; and Trends and Issues in ICT (Humanities variants place more weight on publishing/office tools). This subject is distinct from Kerala Plus Two Computer Science (which emphasizes OOP, data structures, server-side scripting, and related CS topics). English and Malayalam media are typically available. Confirm circulars on beta.hseportal.kerala.gov.in and dhsekerala.gov.in. This practice bank is an English-language MCQ study adaptation for concept fluency — it does not simulate official attempt limits, long program writing, lab practicals, project records, or CE evidence.

Time Limit

About 2 hours theory for Computer Applications (plus cool-off time as notified; practical subjects commonly 2 h theory)

Passing Score

Commonly reported as grade D+ or above (~30% aggregate across CE, PE, and TE where applicable), with a separate minimum of about 30% in Terminal Evaluation (for practical subjects, TE floor often described near ~18 when TE is 60 marks); verify the current pass criteria for your examination year.

Exam / Certification Fees

As notified by DHSE and paid through Higher Secondary schools for regular Plus Two sittings (no single fixed public subject fee for all categories).

Exam sponsor website

Fees, eligibility, and exam policies can change. Confirm them with the exam sponsor before applying or paying.

Our practice resources: topics covered

We aim to reflect publicly available exam outlines and topic information in our study resources. Coverage, format, and difficulty may differ from the actual exam, and we cannot guarantee that every detail is accurate or current. Confirm exam requirements, fees, and policies with the official exam sponsor.

~13% of this local bank

Review of C++ Programming

Tokens, keywords, data types, operators, cin/cout, decision and loop constructs, and basic program structure from the Plus Two CA Commerce C++ review unit.

~6% of this local bank

Arrays

Declaration and use of one- and two-dimensional arrays, indexing, traversal, and simple array algorithms within board scope.

~10% of this local bank

Functions

Function prototypes, definitions, arguments, return values, call-by-value vs reference ideas, and modular program design.

~13% of this local bank

Web Technology

Internet vs WWW, browsers and servers, URL structure, static and dynamic pages, and client-side versus server-side scripting overview.

~10% of this local bank

Web Designing using HTML

Document structure, headings, paragraphs, lists, hyperlinks, images, tables, forms, and common attributes for page design.

~8% of this local bank

Client-Side Scripting using JavaScript

Script placement, variables, operators, control statements, functions, simple DOM access, and form validation ideas.

~5% of this local bank

Web Hosting

Domain registration concepts, shared and other hosting types, uploading files, and making a site publicly reachable.

~13% of this local bank

Database Management System

File system vs DBMS, relational tables, primary/foreign/candidate keys, integrity, and basic database design ideas.

~10% of this local bank

Structured Query Language (SQL)

CREATE/INSERT/UPDATE/DELETE ideas, SELECT with WHERE and ORDER BY, aggregate functions, and simple multi-table query concepts.

~5% of this local bank

Enterprise Resource Planning (ERP)

Integrated enterprise modules (finance, HR, inventory, CRM ideas), benefits, implementation challenges, and commerce use cases.

~7% of this local bank

Trends and Issues in ICT

E-commerce models and payment ideas, malware and phishing, authentication and encryption basics, privacy, and digital ethics.

Preparing for the Kerala Plus Two Computer Applications (DHSE) Exam

What You Need to Know

  • Passing score: Commonly reported as grade D+ or above (~30% aggregate across CE, PE, and TE where applicable), with a separate minimum of about 30% in Terminal Evaluation (for practical subjects, TE floor often described near ~18 when TE is 60 marks); verify the current pass criteria for your examination year.
  • Assessment: Official Kerala Plus Two Computer Applications is assessed as Terminal Evaluation (written theory) + Continuous Evaluation + Practical Evaluation for a subject total of 100 marks. As a practical subject (like Computer Science), TE theory is commonly near 60 marks with CE and PE making up the remainder (exact splits follow the year’s scheme). Theory duration is commonly about 2 hours plus cool-off time as notified (often ~15 minutes). The written paper is mixed format (not pure MCQ) covering SCERT Computer Application (Commerce) units such as Review of C++ Programming; Arrays; Functions; Web Technology; Web Designing using HTML; Client-Side Scripting using JavaScript; Web Hosting; Database Management System; Structured Query Language; Enterprise Resource Planning; and Trends and Issues in ICT (Humanities variants place more weight on publishing/office tools). This subject is distinct from Kerala Plus Two Computer Science (which emphasizes OOP, data structures, server-side scripting, and related CS topics). English and Malayalam media are typically available. Confirm circulars on beta.hseportal.kerala.gov.in and dhsekerala.gov.in. This practice bank is an English-language MCQ study adaptation for concept fluency — it does not simulate official attempt limits, long program writing, lab practicals, project records, or CE evidence.
  • Time limit: About 2 hours theory for Computer Applications (plus cool-off time as notified; practical subjects commonly 2 h theory)
  • Exam / certification fees: As notified by DHSE and paid through Higher Secondary schools for regular Plus Two sittings (no single fixed public subject fee for all categories). Official sources

Using Our Practice Resources

  • Work through all 100 available questions
  • Review every answer and explanation
  • Track weak areas and revisit them
  • Use our AI tutor for tough concepts

Kerala Plus Two Computer Applications (DHSE): Suggested Study Strategy

1Practice official DHSE/school Computer Application model papers under timed ~2 h conditions so you can switch from MCQ drills to written short answers, HTML snippets, and SQL statements.
2Keep Computer Applications distinct from Computer Science: prioritize HTML forms, JavaScript validation, SQL queries, ERP modules, and ICT security over CS-only data structures and advanced OOP.
3Maintain a lab record with working C++ programs, HTML pages, JavaScript demos, and SQL scripts — practical and CE marks matter toward the 100-mark total.
4Build a one-page cheat sheet of common HTML tags, JavaScript operators, SQL clauses (SELECT, WHERE, ORDER BY, GROUP BY aggregates), and key DBMS terms.
5For ERP and ICT chapters, focus on module names, business benefits, e-commerce models, and concrete security practices (strong passwords, phishing awareness, antivirus) rather than brand trivia.
6Use English/Malayalam textbooks as directed by your school; this free bank is an English MCQ adaptation only and is not a practical substitute.

Frequently Asked Questions

Is the official Kerala Plus Two Computer Applications exam pure multiple-choice?

No. Official Kerala Plus Two Computer Applications is mixed Terminal Evaluation (written theory with short/long and objective-style items) plus Continuous Evaluation and Practical Evaluation. This bank is an English-language multiple-choice study adaptation for concepts only — not an official paper, lab practical, project, or CE simulation, and not a substitute for hands-on practical work.

How is Computer Applications different from Computer Science in Kerala Plus Two?

Computer Applications (Commerce/Humanities) focuses on application-oriented topics such as C++ review for commerce students, web design (HTML/JavaScript), databases/SQL, ERP, and ICT trends. Computer Science is a separate subject with deeper programming, data structures, OOP, and related CS units. Choose the bank that matches the subject on your hall ticket.

How is Kerala Plus Two Computer Applications scored out of 100?

The subject total is commonly 100 marks from Terminal Evaluation + Continuous Evaluation + Practical Evaluation. As a practical subject, TE theory is often near 60 marks with CE and PE making up the rest — confirm the year’s scheme on beta.hseportal.kerala.gov.in and dhsekerala.gov.in.

How long is the Kerala Plus Two Computer Applications theory paper?

Theory for practical subjects such as Computer Applications is commonly about 2 hours, plus cool-off time as notified (often about 15 minutes). Confirm the year’s date sheet and instructions on official DHSE portals.

What is the passing score for Kerala Plus Two Computer Applications?

Pass is commonly grade D+ or above (~30% aggregate across CE, PE, and TE where applicable), with a separate minimum of about 30% in Terminal Evaluation (for practical subjects, TE floor often described near ~18 when TE is 60 marks). Always verify the current circular for your examination year.

Which languages is Plus Two Computer Applications offered in?

English and Malayalam media are commonly available for Kerala Plus Two Computer Applications. This practice bank is written in English for concept revision.

How much does the Kerala Plus Two Computer Applications exam cost?

Computer Applications is not sold as a separate marketplace product. Fees are notified by DHSE and paid through Higher Secondary schools for regular candidates. Check beta.hseportal.kerala.gov.in for the current fee circular.

What syllabus does this bank follow?

It is aligned to SCERT Kerala Plus Two Computer Application (Commerce) units commonly used under DHSE: Review of C++ Programming; Arrays; Functions; Web Technology; Web Designing using HTML; Client-Side Scripting using JavaScript; Web Hosting; Database Management System; Structured Query Language; Enterprise Resource Planning; and Trends and Issues in ICT. Humanities CA variants emphasize publishing/office tools more; this bank stays applications-focused and is not a Computer Science paper.

Where can I find official notices and schemes?

Check the HSE Portal at https://beta.hseportal.kerala.gov.in, DHSE at https://dhsekerala.gov.in, and SCERT Kerala for syllabi, timetables, and related circulars.