CBSE Class 10 Computer Application Sample Question Paper 2019-20
CBSE Class 10 Computer Application Sample Question Paper 2019-20
1 Expand SMTP. 1
m
3 Rashmi has to send an email to Raees. She also wants to send the same e-mail 1
co
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 1
a.
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.
di
Has Shreyas done the right thing? Which right of Geetu has he infringed?
OR
rin
Define plagiarism.
7 Ritwik wants to use a software but does not want to pay for it. Which type of 1
software can he use?
a
Section – B
.c
9 Kuhu has just learnt how to do online banking. Name any two precautions that she 2
should take to prevent online fraud.
w
11 Write HTML code to display the unordered list (with square bullets) of two cities 2
“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: 2
m
14 Write output of the following HTML code. 3
co
<html> <head> <title> Table </title> </head>
<body>
<table border=”1”>
<tr> <td align=”center” rowspan=”2”> ONE </td> <td> TWO </td> <td>THREE
a.
</td> </tr>
<tr> <td> Rose </td> <td> Lily </td> </tr>
di
<tr> <td align=”center”> Pansy </td> <td align=”center” colspan=”2”> Dahlia
</td> </tr>
</table> </body> </html>
rin
OR
e
re
Observe the following table and write the HTML code to generate it:
a
.c
w
w
w
Section – C (Scratch)
OR
(i) What will be the final position of the cat (Scratch mascot) after running the 1
m
following script?
co
a.
di
rin
(ii) What happens when the sprite does not touch the edge of the stage? 1
e
a re
.c
w
w
w
(iii) In question (ii) above, what happens when the sprite touches the edges. 2
17 Name the tab and category of blocks that should be selected to do the following: 2
(i) Ask the user’s name
(ii) Add a variable to store points of the game
Section – D ( Python)
OR
m
>>> print (‘Test’ * 3)
>>> print (‘7’+’8’)
co
20. What will be output of the following code if the user enters Principal amount as 2
20000 and Time as 10 years.
#Considering Python 2.7
P = input("Enter Principal amount:")
a.
T = input("Enter Time:")
di
if T>10:
SI = P*T*10/100
rin
else:
SI = P*T*15/100
print("Simple Interest = ",SI)
e
OR
re
if T>10:
w
SI = P*T*10/100
else:
w
SI = P*T*15/100
print("Simple Interest = ",SI)
w
21. Write a code that displays the sum of first 10 natural numbers. 3
w
w
w
.c
a re
erin
di
a.
co
m