aglasem.com
Schools Admission Mock Test Playground
ClassChoose class
StateSelect state

Kerala Plus One Question Paper 2024 Computer Application Commerce

Download the Kerala Plus One Question Paper 2024 Computer Application Commerce PDF for free at AglaSem. Solving this previous year question paper helps you understand the real Kerala Class 11 exam pattern, question types, difficulty level and marking scheme, and reveals important repeated topics — practise it to build speed, accuracy and exam confidence. More Detail
Kerala Plus One Question Paper 2024 Computer Application Commerce - Page 1 of 9

About Kerala Plus One Question Paper 2024 Computer Application Commerce

Kerala Plus One Question Paper 2024 Computer Application Commerce is available here for free download. Published by Kerala Board for Class 11, this question paper can be viewed online or downloaded as a PDF (9 pages). Candidates preparing for Class 11 can use Kerala Plus One Question Paper 2024 Computer Application Commerce to understand the exam pattern, the type of questions asked, and the overall difficulty level.

Frequently Asked Questions

How can I download Kerala Plus One Question Paper 2024 Computer Application Commerce?

Open this page and click the Download button to save Kerala Plus One Question Paper 2024 Computer Application Commerce as a PDF. It is completely free on AglaSem Docs.

Is Kerala Plus One Question Paper 2024 Computer Application Commerce free to download?

Yes. Kerala Plus One Question Paper 2024 Computer Application Commerce can be viewed online and downloaded as a PDF free of cost on AglaSem Docs.

How many pages does Kerala Plus One Question Paper 2024 Computer Application Commerce have?

Kerala Plus One Question Paper 2024 Computer Application Commerce contains 9 pages, which you can read online or download together as a single PDF.

Where can I find more Class 11 study material?

You can find more Class 11 question papers, sample papers, syllabus, and answer keys on AglaSem Docs.

Kerala Plus One Question Paper 2024 Computer Application Commerce – Text

Read the full text of this question paper below — useful to quickly search, copy and reference the content online without downloading the PDF.

📄 View text version (9 pages)

Page 1

Kerala Board

Question Paper
2024

Page 2

Reg. No. : ......................................
FY-454 Name : ...........................................

FIRST YEAR HIGHER SECONDARY EXAMINATION, MARCH – 2024

Part – III Time : 2 Hours
COMPUTER APPLICATION Cool-off time : 15 Minutes
(COMMERCE)
Maximum : 60 Scores

General Instructions to Candidates :
 There is a ‘Cool-off time’ of 15 minutes in addition to the writing time.
 Use the ‘Cool-off time’ to get familiar with questions and to plan your answers.
 Read questions carefully before answering.
 Read the instructions carefully.
 Calculations, figures and graphs should be shown in the answer sheet itself.
 Malayalam version of the questions is also provided.
 Give equations wherever necessary.
 Electronic devices except non-programmable calculators are not allowed in the
Examination Hall.

  :
    15  ‘  ’ .
 ‘  ’    
 .
      .
    .
  , , ,   
.
   .
    .
     
    .

FY-454 1 P.T.O.

Page 3

PART-I
Answer any 5 questions from 1 to 6. Each carries 1 score. (5  1 = 5)
1. Processed data is known as ________.

2. 1 Byte = ________ bit.

3. Who developed C++ Language ?
(Dennis Ritchie, Bjarne Stroustrup, James Gosling, None of these)

4. Increment (++) and Decrement (– –) are __________ Operators.
(Unary, Binary, Ternary, None of these)

5. Expand HTTP.

6. Pick the odd one out :
(Facebook, Mozilla Firefox, Google Chrome, Opera)

PART-II
Answer any 9 questions from 7 to 18. Each carries 2 scores. (9  2 = 18)
7. Write any four advantages of Computers.

8. Convert the decimal number 80 to binary number.

9. Write any four major functions of an Opertaing System.

10. Define the term Debugging.

11. Categorise the following tokens into Keyword, Literal, Identifier and Operator :
Num, float, +, “Arun”

FY-454 2

Page 4

PART-I
1  6    5  .
1  . (5  1 = 5)
1.    ________ .

2. 1  = ________ .

3.  C++   ?
(Dennis Ritchie, Bjarne Stroustrup, James Gosling, None of these)

4. Increment (++) and Decrement (– –)are __________ Operators.
(Unary, Binary, Ternary, None of these)

5. HTTP   .

6.    :
(Facebook, Mozilla Firefox, Google Chrome, Opera)

PART-II
7  18    9  .
2  . (9  2 = 18)
7.     .

8. 80      .

9.        .

10.    .

11.    , , ,
  .
Num, float, +, “Arun”
FY-454 3 P.T.O.

Page 5

12. What are escape sequences ? Write any two examples with its use.

13. The value of x = 10 and y = 4. What is the output of the following expression ?
(a) x%y (1)
(b) (x = = y) && (x >=10) (1)

14. Write any four type modifiers in C++.

15. Write the syntax of if ..... else statement in C++.

16. Differentiate between Router and Gateway.

17. What is TCP/IP ?

18. What is meant by Video conferencing ?

PART-III
Answer any 9 questions from 19 to 29. Each carries 3 scores. (9  3 = 27)
19. What are the six stages of data processing ?

20. Compare RAM and ROM.

21. What is meant by Documentation in Programming ? Write two types of documentation.

22. Explains three types of errors in a computer program.

23. Define Data types. Write any four fundamental data types in C++.

24. Consider the following C++ code and classify the statements as : Declaration statement,
Input statement, Output statement.
int m, n;
m=10;
cout<<m;
cin>>n;

FY-454 4

Page 6

12. Escape sequence   ?   
  .

13. x   10  y   4  .  
  ?
(a) x%y (1)
(b) (x = = y) && (x >=10) (1)

14. C++   type modifiers .

15. C++  if ..... else   .

16. Router  Gateway    .

17. TCP/IP   ?

18.       ?

PART-III
19  29    9  .
3  . (9  3 = 27)
19.      ?

20. RAM  ROM   .

21.      ?
   .

22.      .

23.   . C++      
.

24.  C++  , 
 ,  ,   
 .
int m, n;
m=10;
cout<<m;
cin>>n;

FY-454 5 P.T.O.

Page 7

25. Write the structure of C++ Program.

26. Compare switch and if ..... else if statement in C++.

27. Define the following terms :
(a) Phishing (1)
(b) Firewall (1)
(c) Antivirus (1)

28. What is meant by e-Mail ? Write any four advantages of e-Mail.

29. Write any three e-Learning tools.

PART-IV
Answer any 2 questions from 30 to 32. Each carries 5 scores. (2  5 = 10)
30. What is e-Waste ? Explain any four methods of e-Waste disposal.

31. Consider the following C++ code
for(i=1;i<=5;i++)
{
cout<<i<<”\t”;
}
(a) Write the output of above code. (1)
(b) Classify the four looping elements as, Initialisation statement, Test expression,
Update statement, Body of loop from the above code. (4)

32. Define Network Topology. (1)
Explain any four Network Topologies with neat diagram. (4)

_____________

FY-454 6

Page 8

25. C++   .

26. C++  switch  if ..... else if   .

27.    :
(a) Phishing (1)
(b) Firewall (1)
(c) Antivirus (1)

28. -    ? -  
 .

29.   -  .

PART-IV
30  32    2  .
5  . (2  5 = 10)
30.  e-Waste ? e-Waste    
.

31.  C++  .
for(i=1;i<=5;i++)
{
cout<<i<<”\t”;
}
(a)    . (1)
(b)        Initialisation
statement, Test expression, Update statement, Body of loop  
 . (4)

32.   . (1)
      . (4)

_____________

FY-454 7 P.T.O.

Page 9

FY-454 8

Document Details

Board / OrgKerala Board
ExamClass 11
TypeQuestion Paper
Pages9
Updated22 Jul 2026