Computer Application Sample Paper Class 10 CBSE Board
Exam 2020. Sample papers along with marking schemes have also been published as
per the changed pattern, which will be taken while preparing the question
papers in the board examination 2020. Here, we present the CBSE sample. Paper
and marking scheme for class 10 Computer Application subjects. Students should thoroughly
analyze the pattern and marking trends of the question paper to form an
effective plan for the preparation of the board examination.
Structure
of CBSE Class 10 Computer Application Model Paper 2020
The CBSE Class 10th Computer Application paper
will be of two hours and a total of 30 marks.
the paper will consist of 21 questions all divided into four sections. Section A, B, C, D.
Section A and B have to be attempted by all students.
Students may attempt any one of the two - Section C (Scratch
) OR Section D (Python)
SECTION- A
1. Expand SMTP.
2. Consider the following HTML
statement:
<body
bgcolor
=”Blue”alink =”red” vlink=”yellow”>
In the above statement,
what do you mean by ‘alink’
and ‘vlink’?
3. Rashmi has to send an email to Raees. She also wants to send the same e-mail to Vandana but does not want Raees to know about it. Which option out of ‘cc’ or
‘bcc’ should Rashmi use to enter the email address of Vandana?
4. Geetu is an artist. She posts her artwork on the internet. One day she comes to
know
that Shreyas has downloaded
one of the paintings that she had posted
without her permission. He had further printed that image on an invitation card. Has Shreyas done the right
thing? Which right of
Geetu has him
infringed?
OR
Define plagiarism.
5. Give one difference between
3G and 4G.
6. Define the term Digital Divide.
7. Ritwik wants to
use software but does not want
to pay for it. Which type of
software can he
use?
Section-
B
8. Write
any one application each of e-Governance
and e-commerce.
9. Kuhu
has just learned how to do online banking. Name any two
precautions that she should take to
prevent online fraud.
10. Name
the following with respect to HTML:
a. Attribute for changing bullet type of list tag.
b. Element to create
a hyperlink
11. Write
HTML
code to display the unordered
list (with square
bullets) of two
cities “DELHI” and “MUMBAI”. The web
page
should have a yellow background and
the title
of
the page should be
‘My Cities’.
OR
Write HTML code to display an ordered list (with uppercase roman numbers)
listing any three subjects being taught in your school.
The web page should have
a red background and the
title of the page should be ‘My Subjects’.
12. Form a CSS code within the
<head>….</head> for the following specifications:
Background color: blue
For
the paragraph,
font-family is
Datum and color of the
text is red
Heading should be in
black color
13. Write the HTML code
to do the following:
a. To display a horizontal line of green color.
b. To create a
hyperlink on the word CLICK to an image named testimage.jpeg
14. Write output of the following HTML code.
<html> <head> <title> Table </title> </head>
<body>
<table border=”1”>
<tr> <td align=”center” rowspan=”2”> ONE </td> <td> TWO </td> <td>THREE
</td> </tr>
<tr> <td> Rose
</td> <td> Lily </td> </tr>
<tr> <td align=”center”> Pansy </td>
<td align=”center” colspan=”2”> Dahlia </td> </tr>
</table> </body>
</html>
OR
Observe the following table
and write the HTML
code to generate it:
SECTION- C
15. Differentiate between and blocks.
16. Study
the scripts are given below and answer the questions.
(i) What will be the final position
of the cat (Scratch mascot) after running the following script?
(ii)
What happens when the sprite does not
touch the edge of
the stage?
(iii)
In
question (ii) above, what happens when
the
sprite touches the edges.
17. Name
the tab and category of blocks that
should be selected to do
the following:
(i) Ask the user’s name
(ii) Add a variable to
store points of the game
SECTION-D
18. Which of the following are valid variable
names
in Python? 1plus2, if, my_book, yes&no, HelloWorld.
19. What will be the output
of the following expressions? #Considering Python 2.7
>>> print (‘Test’ * 3) >>> print
(‘7’+’8’)
OR
#Considering Python
3.x >>> print (‘Test’ * 3)
>>>
print (‘7’+’8’)
20. What will be output
of the following code if the user enters
Principal amount as 20000 and Time as
10 years.
#Considering Python 2.7
P = input("Enter
Principal amount:")
T = input("Enter
Time:")
if T>10:
SI = P*T*10/100
else:
SI = P*T*15/100
print("Simple Interest = ",SI)
OR
#Considering Python
3.x
P = input("Enter
Principal amount:")
T = input("Enter
Time:")
if T>10:
SI = P*T*10/100
else:
SI = P*T*15/100
print("Simple Interest = ",SI)
21. Write a code that displays
the sum of the first 10 natural numbers.