aglasem.com
Home Schools Admission Career Mock Test PDF Docs Playground
ClassChoose class
StateSelect state

Kerala Class 12 First Term Question Paper 2025 Computer Application

Download Kerala Class 12 First Term Question Paper 2025 for Computer Application PDF from aglasem.com. Get free access to latest official Kerala Board 12th Class Previosu Year Question Paper. Onam Exam Class 12 First Term Computer Application Question Paper 2025 is given below. More Detail
Kerala Class 12 First Term Question Paper 2025 Computer Application - Page 1 of 8

About Kerala Class 12 First Term Question Paper 2025 Computer Application

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

Frequently Asked Questions

How can I download Kerala Class 12 First Term Question Paper 2025 Computer Application?

Open this page and click the Download button to save Kerala Class 12 First Term Question Paper 2025 Computer Application as a PDF. It is completely free on AglaSem Docs.

Is Kerala Class 12 First Term Question Paper 2025 Computer Application free to download?

Yes. Kerala Class 12 First Term Question Paper 2025 Computer Application can be viewed online and downloaded as a PDF free of cost on AglaSem Docs.

How many pages does Kerala Class 12 First Term Question Paper 2025 Computer Application have?

Kerala Class 12 First Term Question Paper 2025 Computer Application contains 8 pages, which you can read online or download together as a single PDF.

Where can I find more Class 12 study material?

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

Kerala Class 12 First Term Question Paper 2025 Computer Application – 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 (8 pages)

Page 1

Answer any five questions from 1 to 6. 1 score 1 മുതൽ 6 വെരയു തിൽ ഏെത ിലും 5 എ ിന്
each. (5 x 1 = 5) ഉ രം എഴുതുക. 1 സ്േകാർ വീതം. (5 x 1 =5)

1. Which jump statement transfers control to a labeled 1. േലബൽ െചയ്തി ഒരു േ ്െമ േല ് നിയ ണം
statement? മാ ജ ്േ ്െമ ് ഏത്?
2. Which is the ternary operator in C++? 2. C++ൽ 'േടർണറി ഓ േറ ർ' ഏതാണ്?
(a) == (b) ?: (c) && (d) != (a) == (b) ?: (c) && (d) sizeof.

3. The first element in an array list can be accessed by 3. list എ അേറയുെട ആദ ഘടകം ആക്സസ് െച ാൻ
(a) list(0) (b) list[0] (c) list.0 (d) list{0} േവ ത് ഏതാണ്?
(a) list(0) (b) list[0] (c)list.0 (d) list{0}

4. Pick the library function that terminates a C++ 4. ഒരു C++ േ പാ ഗാം അവസാനി ി ു ൈല ബറി ഫംഗ്ഷൻ
program തിരെ ടു ുക.
(a)break (b) exit() (c)return (d) pow() (a)break (b) exit() (c)return (d) pow()

5. In the hexadecimal color code #FF0000, the red 5. നിറ ിെ #FF0000 എ hexadecimal േകാഡിൽ ചുവ ്
component is: ഘടക ിെ മൂല ം ഏതാണ്?
(a) 00 (b) FF (c) FF00 (d) not present (a) 00 (b) FF (c) FF00 (d) ഇ

6. The default port number associated with SMTP is 6. SMTP യുമായി ബ െ ിരി ു default േപാർ ് ന ർ
_____. ______ ആണ്.

Answer any nine questions from 7 to 18. 7 മുതൽ 18 വെരയു തിൽ ഏെത ിലും 9 എ ിന്
2 scores each. (9 x 2 = 18) ഉ രം എഴുതുക. 2 സ്േകാർ വീതം. (9 x 2 =18)

7. Give the output 7. ഔ ്പു ് നൽകുക
1. for(int i = 1; i <= 10; i++) 1. for(int i = 1; i <= 10; i++)
{ if (i %5==0) break; { if (i %5==0) break;
cout << i << " "; } cout << i << " "; }
2. for(int i = 1; i <= 10; i++)
2. for(int i = 1; i <= 10; i++)
{ if (i %5==0) continue;
{ if (i %5==0) continue;
cout << i << " "; }
cout << i << " "; }
8. Match the data type in first column with its use in 8. ആദ േകാള ിലുളള ഡാ ാ ൈട കെള ര ാം
second column േകാള ിലുളള അതിെ ഉപേയാഗവുമായി
Data Type Can be used for െപാരു െ ടു ുക.

float Function that returns nothing ഡാ ാ ൈട ് ഉപേയാഗം

double Storing characters float മൂല ം തിരിെക നൽകാ
char decimal values ഫംഗ്ഷനുകൾ ായി
void high-precision decimals double അ ര ൾ സംഭരി ാൻ
char ദശാംശ സംഖ കൾ
void കൂടുതൽ കൃത തയു ദശാംശ
സംഖ ൾ

9. Name the essential tags of an HTML document. 9. ഒരു HTML േഡാക െമ െ അവശ ടാഗുകള െട േപരുകൾ
നൽകുക.

Page 2

10. Give array declarations for the following: 10. അേറ ഡി േറഷനുകൾ നൽകുക:
(a)a float array prices to store the cost of 12 items in (a)ഒരു കടയിെല 12 വസ്തു ള െട വില സൂ ി ാൻ
a shop prices എ float അേറ
(b) a character array initials to store 20 alphabets (b) 20 അ ര ൾ സൂ ി ാൻ initials എ കാരക്ടർ
അേറ

11. If you declare 11. char title[15]= "Festival"; എ ് പഖ ാപി ാൽ,
char title[15] = "Festival"; (a) എ ത െമ റി അേലാേ ് െച െ ടും?
(a)What is the total memory allocated? (b) ഉപേയാഗി ാ ൈബ കൾ എ ത?
(b) How many unused bytes are left?
12. Fill in the blanks to find the largest among 10 values 12. price എ അേറയിെല 10 മൂല ളിൽ ഏ വും വലിയത്
in the array, price കെ ാൻ blanks പൂരി ി ുക:
large = ____ ; large = ____ ;
for (i = 1 ; i < ____ ; i++ ) for (i = 1 ; i < ____ ; i++ )
{
{
if (price[i] > ____ )
if (price[i] > ____ )
large= ____ ; }
large= ____ ; }

13. Fill in the blanks in the following table 13. പ ിക പൂരി ി ുക

Prototype Arguments Return Prototype Arguments Return
data type data type data type data
type
float sum(int, int); _______ ______
float sum(int, int); _______ _____
__ disp ( ___ ); float none
__ disp ( ___ ); float none

14. What is a preprocessor directive? 14. പീെ പാസ ർ ഡയറക് ീവ് എ ാെല ് ? ഒരു
Give one example and state its purpose. ഉദാഹരണം നൽകി അതിെ ഉേ ശ ം പറയുക.

15. Compare the functions strcmp() and strcmpi() with 15. strcmp(), strcmpi() എ ര ് ഫംഗ്ഷനുകൾ
example ഉദാഹരണസഹിതം താരതമ ം െച ക.

16. Name any two attributes each: 16. ഏെത ിലും ര ് ആ ിബ കൾ എഴുതുക
(a) <IMG> (b) <HTML> (a) <IMG> (b) <HTML>

17. Define: 17. നിർവചി ുക:
Web server (1) (a)െവബ് െസർവർ (1)
Data center (1) (b)ഡാ ാ െസ ർ (1)

18. Expand the following: 18. പൂർണരൂപം എഴുതുക
DNS (b) HTML DNS (b) HTML

Answer any nine questions from 19 to 29. 3 19 മുതൽ 29 വെരയു തിൽ ഏെത ിലും 9
scores each. (9 x 3 = 27) എ ിന് ഉ രം എഴുതുക. 3 സ്േകാർ വീതം.
(9 x 3 = 27)

19. int i = 1; 19. int i = 1;
while(i > 3) while(i > 3)
{ cout << i; { cout << i;
i++; } i++; }
(a) ലൂ ് േബാഡി എത തവണ പവർ ി ും?
(a) How many times will the loop body execute?
വിശദീകരി ുക. (1)
Justify. (1)
(b) സമാനമായ do-while ലൂപ് ആയി മാ ക. (1)
(b) Modify this to a do-while version (1) (c) മാ ിയ ലൂപിെ ഔ ്പു ് പവചി ുക. (1)
(c) What is the output of the modified loop? (1)

Page 3

20. Convert to switch case structure. 20. സ ി ്-േകസ് ഘടനയിേല ് മാ ക.
if (choice==’a’) cout<<”Academics”; if (choice==’a’) cout<<”Academics”;
else if (choice==’b’) cout<<”Sports”; else if (choice==’b’) cout<<”Sports”;
else cout<<”Next slot”; else cout<<”Next slot”;

21. grade = (score>50) ? ‘B’ : ‘A’; 21. grade = (score>50) ? ‘B’ : ‘A’;
(a) What will be the value stored in grade if score is (a) score = 55 ആെണ ിൽ grade-ൽ എ ് മൂല മാണ്
55? (1) സൂ ി െ ടു ത്? (1)
(b) Rewrite this using any other decision statement. (b) മേ െത ിലും ഡിസിഷൻ സ്േ ്െമ ് ഉപേയാഗി ് code
മാ ി എഴുതുക. (2)
(2)

22. Write a nested for loop structure to create the 22. താെഴ പറയു ഔ ്പു ് സൃഷ്ടി ാൻ ഒരു nested for ലൂ ്
following output. എഴുതുക.
1 1
2 2 2 2
3 3 3
3 3 3
23. void modify(int x) 23. void modify(int x)
{ x = x + 10; } { x = x + 10; }
int main() int main()
{ {
int a = 5;
int a = 5;
modify(a);
modify(a);
cout << a; }
cout << a; } ഔ ്പു ് എ ായിരി ും? (1)
(a) What will be the output? (1) (b) ഉപേയാഗി ിരി ു പാരാമീ ർ പാസിങ് രീതിെയ
(b) Justify your answer based on the parameter അടി ാനമാ ി ഔ ്പു ് വിശദീകരി ുക (2)
passing method used. (2)
24. int a,b; 24. int a,b;
void show(int p) void show(int p)
{cout<<p*p; } {cout<<p*p; }
int main () int main ()
{ int m=5;
{ int m=5;
show(m); }
show(m); }
(a) േലാ ൽ, േ ാബൽ േവരിയബിള കൾ തിരി റിയുക. (1)
(a)Identify the local and global variables. (1) (b) ഓേരാ േവരിയബിളിെ യും സ്േകാ ം ൈലഫ് ൈടമും
(b) State the scope and life time of each variable. വിശദീകരി ുക. (2)
(2)
25. Define modular programming? (1) 25. േമാഡുലാർ േ പാ ഗാമിംഗ് എ ാെല ്? (1)
List two merits. (2) ഏെത ിലും ര ു ഗുണ ൾ എഴുതുക. (2)

26. Explain the step-by-step method in how the DNS 26. ഒരു IP വിലാസം DNS എ െന റിേസാൾവ് െച ു
resolves an IP address. എ തിെ ഘ ം ഘ മായു രീതി വിശദീകരി ുക

27. State any 3 points that distinguish a static web page 27. ഒരു ാ ിക് െവബ് േപജിെനയും ൈഡനാമിക് െവബ്
from a dynamic web page. േപജിെനയും വ ത സ്തമാ ു ഏെത ിലും 3 േപായി കൾ
പറയുക.

28. int calc(int a, int b=4, int c=10) 28. int calc(int a, int b=4, int c=10)
{ return a*b*c; } { return a*b*c; }
Predict the result of the function calls Function േകാള കള െട ഫലം പവചി ുക
(a) calc() (b) calc(2,3) (c) calc(1,2,3) (a) calc() (b) calc(2,3) (c) calc(1,2,3)

29. Compare the result of the two expressions and 29. എക്സ് പഷനുകള െട result താരതമ ം
explain: െചയ്ത് വിശദീകരി ുക
cout<< 3 / 2; cout<< 3 / 2;
cout<< 3 / 2.0; cout<< 3 / 2.0;

Page 4

Answer any two questions from 30 to 32. 5 30 മുതൽ 32 വെരയു േചാദ ളിൽ ഏെത ിലും
scores each. (2 x 5 = 10) 2എ ിന് ഉ രം എഴുതുക. 5 സ്േകാർ വീതം.
(2 x 5 =10)

30. Write a C++ program to input a number and 30. ഒരു സംഖ ഇൻപു ് െചയ്ത് 10 വരികള ഗുണന ിക
display its multiplication table with 10 rows. പദർശി ി ു ഒരു C++ േ പാ ഗാം എഴുതുക.

31. Name the C++ built in function and the 31. ഓേരാ ിനുമു C++ ബിൽ ് ഇൻ ഫംഗ്ഷനും
corresponding header file for each of the അനുബ െഹഡർ ഫയലും എഴുതുക
following (a) ഒരു സ് ടിംഗിെന ഇൻപു ് െച തിനു
(a) console function to input a string. കൺേസാൾ ഫംഗ്ഷൻ.
(b) ഒരു അ രം സംഖ യായാേണാ എ ്
(b) to check if a character is a number.
പരിേശാധി ാൻ.
(c) find the absolute value of a floating number.
(c) ഒരു floating number-െ absolute value
(d) join two strings. കെ ാൻ.
(e) convert a character to upper case (d) ര ് സ് ടിംഗുകൾ േചർ ാൻ.
(e) ഒരു അ രെ capital letter ആ ാൻ.

32. Write an HTML program to create a web page with 32. ചുവെട പറയു പേത കതകേളാെടയു ഒരു െവബ് േപജ്
blue background and white coloured letters. സൃഷ്ടി ാൻHTML program എഴുതുക :
Include the following features. ബാ ് ഗൗ ് നിറം നീലയും, അ ര ള െട നിറം
(a) Give a heading “Onam” in the largest size at the െവള ം ആയിരി ണം.
(a) “Onam” എ തലെ ് ഏ വും വലിയ െഹഡിങ്
center of the page.
ഉപേയാഗി ് േപജിെ നടുവിലായി നൽകുക.
(b) A scrolling text “The harvest festival”
(b) “The harvest festival” എ വാചകം സ്േ കാൾ
(c) Insert an image “fest.jpg” to the left of the page െച രീതിയിൽ േചർ ുക.
(d) Add a text “Join the festivities” in a bold, (c) “fest.jpg” എ ചി തം േപജിെ ഇടതുവശ ്
underlined format. ഉൾെ ടു ുക.
(d) “Join the festivities” എ വാചകം bold, underline
െചയ്തതായി നൽകുക

Page 5

First Terminal Examination 2025
HSE II Time:2 Hrs
Cool off time:15 min
Part III
Computer Application (Humanities)
Maximum Score:60

Answer any 5 questions from 1 to 6. Each carries 1 score (5X1=5)

1. Expansion of DTP is _______
2.______ is the association of opposite elements in design.
3. _____ is a predefined document format available in word processor.
4. Name the facility used in writer to cancel the most recent action.
5. Ctrl+ F12 short key is used to......
6. A Domain Name System returns the ___________ of a domain name.
Answer any 9 Questions from 7 to 18. Each carries 2 scores. (9X2=18)

7. What is electronic publishing? Mention different types of electronic publishing.
8. People prefer e-book reader instead of mobile phones to read e- book. Write the
reason.
9. Define a) word wrapping b) Typography
10. What is merging? How will you merge a row or column of a table in writer?
11.Write the steps to replace the word ‘RAM ’ with ‘ RANDOM ACCESS MEMORY ’
in a document?
12.What is the relevance of Auto correct feature in LibreOffice writer? How do you do that?
13.Suppose you want to insert some symbols like¥, π,®, etc. in your document. Write the
steps to do that?
14.Explain different page orientations used in Libre office writer?
15.Explain drop cap feature in writer.
16.Write the steps to split the text into columns in writer.
17.Compare static and dynamic web pages.

Page 6

18. Match the following
1.Ctrl+C a) Cut
2.Ctrl+X b) Paste
3.Ctrl+A c) Copy
4.Ctrl+V d) select
Answer any 9 Questions from 19 to 29. Each carries 3 scores. (9X3=27)
19.Explain any three design elements in publishing.
20.What do you mean by post press? List the four major operations that are done during
this stage.
21.Write a few features of a Word processing software.
22.Name three types of graphics that can be inserted in Writer.
23.Explain any three components of LibreOffice IDE.
24.What is watermark? List down the steps involved in it?
25.Explain any three different types of indentations in Libre Office writer
26.Write steps to create the following using Writer Software.
(I) TOC entries (II) TOC Page
27.What are the keys used for navigation?
28.Write short note on a) CSS b) Web Server
29.What is the use of software ports? Write the port no of HTTP and FTP.
Answer any 2 Questions from 30 to 32. Each carries 5 scores. (5X2=10)
30.(a) What are the different activities in Prepress stage (2)
(b) Explain any three design principles (3)
31.(a) Define Mail Merge? (1)
(b) List down the steps involved in Mail Merging (4)
32. (a) What is the use of HTML? (1)
(b) Compare container and empty tags in HTML with examples. (3)
(c) Write any two attributes of HTML tag (1)

Page 7

First Terminal Examination 2025
HSE II Time:2 Hrs
Cool off time:15 min
Part III
Computer Application (Humanities)
Maximum Score:60

1 മുതൽ 6 വരെയുള്ള ഏരതങ്കിലുും 5 ച ോദ്യങ്ങൾക്ക് ഉത്തെും നൽകുക.1 സ്ചകോർ
വീതം
(5X1=5)
1. DTP യുടെ പൂർണരൂപം --------------------ആണ്
2. ----------എന്നത് രൂപകൽപ്പനയിലെ വിപരീത ഘടകങ്ങളുലട സംയയോജനമോണ്.
3 ._____ എന്നത് യവഡ് യ്പോസസ്സറിൽ െഭ്യമോയ ഒരു മുൻനിർവ്വചിത യഡോകയുലമന്റ്
യ ോർമോറ്റോണ്.

4. ഏറ്റവും പുതിയ ്പവർത്തനം റദ്ദോക്കോൻ റററ്ററിൽ ഉപയയോഗിക്കുന്ന സൗകരയം
----------------------ആണ്.

5.Ctrl+ F12 എന്ന ഷ ോർട്ട് കട്ട് കീ ----------------ന് ഉപയ ോഗിക്കുന്നു.

6.ഒരു ലഡോലമയ്ൻ ലനയിം സിസ്റ്റം ഒരു ലഡോലമയ്ൻ നോമത്തിന്ലറ ____________ തിരിലക
നൽകുന്നു.

7 മുതൽ 18 വരെയുള്ള ഏരതങ്കിലുും 9 ച ോദ്യങ്ങൾക്ക് ഉത്തെും നൽകുക.2 സ്ചകോർ

വീതം (9X2=18)

7. ഇെക്യ്ടോണിക് ്പസിദ്ധീകരണം എന്തോണ്? വയതയസ്ത തരം ഇെക്യ്ടോണിക് ്പസിദ്ധീ
കരണങ്ങൾ പരോമർശിക്കുക.

8.ഇ-ബുക്ക് വോയിക്കോൻ ലമോറബൽ യ ോണുകൾക്ക് പകരം ആളുകൾ ഇ-ബുക്ക്

റീഡറോണ് ഇഷ്ടലപ്പടുന്നത്. കോരണം എഴുതുക.

9.നിർവചിക്കുക a)ഷേർഡ് റോപ്പംഗ് b)ടെഷപ്ോഗ്ഗഫപ

10. എന്തോണ് മെർജിങ്? റററ്ററിൽ ഒരു യടബിളിലെ ഒരു വരിയയോ നിരയയോ എങ്ങലന

മെർജ് മെയ്യും.

11. ഒരു യഡോകയുലമന്റിൽ ‘RAM’ എന്ന േോക്കപന് പകരം ‘RANDOM ACCESS MEMORY’

ഉപയയോഗിച്ച് മോറ്റി എഴുതുന്നതപനുള്ള ഘട്ടങ്ങൾ എഴുതുക.

12. െില്ബ ഓ ീസ് റററ്ററിൽ ഓയടോ കറക്റ്റ് സവിയശഷതയുലട ്പസക്തി എന്തോണ്?

നിങ്ങൾ അത് എങ്ങലന ലചയ്ും?

13. നിങ്ങളുലട യഡോകയുലമന്റിൽ ¥, π,® തുടങ്ങിയ ചിെ ചിഹ്നങ്ങൾ യചർക്കോൻ നിങ്ങൾ
ആ്ഗഹിക്കുന്നുലവന്ന് കരുതുക. അതിനുള്ള ഘടങ്ങൾ എഴുതുക?

14. െില്ബ ഓ ീസ് റററ്ററിൽ ഉപയയോഗിക്കുന്ന വയതയസ്ത യപജ് ഓറിയന്യറഷ നുകൾ

വിശദീകരിക്കുക?

15. റൈറ്റൈിമെ യ്ഡോപ്പ് കയോപ് സവിയശഷത വിശദീകരിക്കുക.
16. റററ്ററിൽ വോചകം യകോളങ്ങളോയി വിഭ്ജിക്കോനുള്ള ഘടങ്ങൾ എഴുതുക.

17.സ്റ്റോറ്റിക്, റഡനോമിക് ലവബ് യപജുകൾ തോരതമയം ലചയ്ുക.

Downloaded from hssreporter.com

Page 8

18 .യെരുുംപടി യെർക്കുക

1.Ctrl+C a) Cut
2.Ctrl+X b) Paste
3.Ctrl+A c) Copy
4.Ctrl+V d) select
19 മുതൽ 29 വരെയുള്ള ഏരതങ്കിലുും 9 ച ോദ്യങ്ങൾക്ക് ഉത്തെും നൽകുക.3

സ്ചകോർ വീതം (9X3=27)
19. ്പസിദ്ധീകരണത്തിലെ ഏലതങ്കിെും മൂന്ന് ഡിറസൻ ഘടകങ്ങൾ വിശദീകരിക്കുക.
20. യപോസ്റ്റ് ്പസ്സ് എന്നതുലകോണ്ട് നിങ്ങൾ എന്തോണ് ഉയദ്ദശിക്കുന്നത്?
ഈ ഘടത്തിൽ ലചയ്ുന്ന നോെ് ്പധോന ്പവർത്തനങ്ങൾ പടികലപ്പടുത്തുക.

21. ഒരു വേഡ് വ്രോസസ്സിംഗ് വസോഫ്റ്റവേയറസന്വറ ചസല സേസവേഷതകൾ എഴുതുക.

22. റററ്ററിൽ ഉൾലപ്പടുത്തോൻ കഴിയുന്ന മൂന്ന് തരം ്ഗോ ിക്സുകളുലട യപര് എഴുതുക.

23. െില്ബ ഓ ീസ് IDE-യുലട ഏലതങ്കിെും മൂന്ന് ഘടകങ്ങൾ വിശദീകരിക്കുക.
24. വോടർമോർക്ക് എന്തോണ്? അതിൽ ഉൾലപ്പടിരിക്കുന്ന ഘടങ്ങൾ പടികലപ്പടുത്തുക.

25.െില്ബ ഓ ീസ് റററ്ററിലെ ഏലതങ്കിെും മൂന്ന് വയതയസ്ത തരം ഇൻഡന്യറഷനുകൾ

വിശദീകരിക്കുക.

26. റററ്റർ യസോ ്റ്റലവയർ
് ഉപയയോഗിച്ച് തോലഴ പറയുന്നവ സൃഷ്ടിക്കുന്നതിനുള്ള

ഘടങ്ങൾ എഴുതുക.

(I) TOC എൻഗ്െപ (II) TOC ഷപജ്

27.നോവിയഗഷനോയി ഉപയയോഗിക്കുന്ന കീകൾ എലന്തോലക്കയോണ്?
28. a) CSS b) ലവബ് ലസർവർ എന്നിവലയക്കുറിച്ച് ഒരു ലചറിയ കുറിപ്പ് എഴുതുക.
29.യസോ ്റ്റലവയർ
് യപോർടുകളുലട ഉപയയോഗം എന്തോണ്? HTTP, FTP എന്നിവയുലട

യപോർട് നമ്പർ എഴുതുക.

30 മുതൽ 32 വരെയുള്ള ഏരതങ്കിലുും 2 ച ോദ്യങ്ങൾക്ക് ഉത്തെും നൽകുക.5 സ്ചകോർ

വീതം (5X2=10)
30. (a) ്പീ്പസ് ഘടത്തിലെ വയതയസ്ത ്പവർത്തനങ്ങൾ എലന്തോലക്കയോണ്? (2)

(b)ഏലതങ്കിെും മൂന്ന് ഡിറസൻ തതവങ്ങൾ വിശദീകരിക്കുക (3)

31. (a) ടെയപൽ ടെർജ് നപർേചപക്കുക . (1)

(b) ലമയിൽ ടെർജപൽ ഉൾവെട്ടസരസക്കുന്ന ഘടങ്ങൾ പടികലപ്പടുത്തുക. (4)

32. (a)എന്തോണ് HTML ന്മൈ ഉപയ ോഗും? (1)

(b) HTML-ലെ കലണ്ടയ്ന ർ, എംപ്റപ ടോഗുകൾ ഉദോഹരണങ്ങൾ ഉപയയോഗിച്ച് തോരതമയം
ലചയ്ുക. (3)

(c) HTML ടോഗിന്ലറ ഏലതങ്കിെും രണ്ട് ആ്ടിബയൂടുകൾ എഴുതുക. (1)

Downloaded from hssreporter.com

Document Details

Board / OrgKerala Board
ExamClass 12
TypeQuestion Paper
Pages8
Updated24 Sep 2026