CBSE Sample Question Papers For Class 10 Computer Application 2020 Board Exam

CBSE Sample Question Papers For Class 10 Computer Application 2020

Class – X
Computer Application (165)
Sample Question Paper 2019-20

Max. Marks: 30                                                                                            Duration: 2 hrs.

General Instructions:

  • The paper contains 4 sections – Section A , Section B and Section C and Section D
  • Section A and B has to be attempted by all students.
  • Students may attempt any one of the two – Section C (Scratch) OR Section D (Python)

Section – A

Question 1.
Expand SMTP.  [1]

Question 2.
Consider the following HTML statement:  [1]
<body bgcolor – ’Blue” alink =”red” vlink=”yellow”>
In the above statement, what do you mean by ‘alink’ and ‘vlink’?

Practice MCQ Questions for Class 10 Maths With Answers for 2020 Board Exams.

Question 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?  [1]

Question 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 he infringed?
OR
Define plagiarism.  [1]

Question 5.
Give one difference between 3G and 4G.  [1]

Question 6.
Define the term Digital Divide.  [1]

2020 Board Exam: Download CBSE Sample Papers for Class 10 Bundle PDF

CBSE Sample Papers for Class 10 Maths CBSE Sample Papers for Class 10 Standard
CBSE Sample Papers for Class 10 English CBSE Sample Papers for Class 10 Sanskrit
CBSE Sample Papers for Class 10 Social Science Formula Handbook for Class 10 Maths and Science

Question 7.
Ritwik wants to use a software but does not want to pay for it. Which type of software can he use?  [1]

Section – B

Question 8.
Write any one application each of e-Governance and e-commerce.  [2]

Question 9.
Kuhu has just learnt how to do online banking. Name any two precautions that she should take to prevent online fraud.  [2]

Question 10.
Name the following with respect to HTML:   [2]
a. Attribute for changing bullet type of list tag.
b. Element to create a hyperlink

Question 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’

Question 12.
Form a CSS code within the <head>….</head> for the following specifications:  [2]
Background colour : blue For the paragraph,
font family is Dotum and colour of the text is red Heading should be in black colour

Question 13.
Write the HTML code to do the following:  [2]
a. To display a horizontal line of green colour.
b. To create a hyperlink on the word CLICK to an image named testimage.jpeg

Question 14.
Write output of the following HTML code.  [3]
<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> 3

OR
Observe the following table and write the HTML code to generate it:

S.NO CLASS NUMBER OF STUDENTS
ENGLISH HINDI REGIONAL
1 XA 35 10 6
2 XB 31 15 4

Section – C (Scratch)

Question 15.
CBSE Sample Question Papers for Class 10 Computer Application - 1 [2]

Or
CBSE Sample Question Papers for Class 10 Computer Application - 2

Question 16.
Study the scripts given below and answer the questions.  [4]
(i) What will be the final position of the cat (Scratch mascot) after running the following script?  [1]
CBSE Sample Question Papers for Class 10 Computer Application - 5

(ii) What happens when the sprite does not touch the edge of the stage?  [1]
CBSE Sample Question Papers for Class 10 Computer Application - 6

(iii) In question (ii) above, what happens when the sprite touches the edges.  [2]

Question 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 2

Section – D ( Python)

Question 18.
Which of the following are valid variable names in Python? 1plus2 , if, my_book, yes&no, helloworld  [1]

Question 19.
What will be output of the following expressions?  [2]
#Considering Python 2.7
>>> print (‘Test’ * 3)
>>> print (‘7’+’8’)
OR
#Considering Python 3.x
>>> print (‘Test’ * 3)
>>> print (‘7’+’8’) 2

Question 20.
What will be output of the following code if the user enters Principal amount as 20000 and Time as 10 years.  [2]
#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) 2

Question 21.
Write a code that displays the sum of first 10 natural numbers.  [3]

Leave a Comment