Class 10 Exam  >  Class 10 Tests  >  CBSE Sample Papers For Class 10  >  Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Class 10 MCQ

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Class 10 MCQ


Test Description

30 Questions MCQ Test CBSE Sample Papers For Class 10 - Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22)

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) for Class 10 2024 is part of CBSE Sample Papers For Class 10 preparation. The Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) questions and answers have been prepared according to the Class 10 exam syllabus.The Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) MCQs are made for Class 10 2024 Exam. Find important definitions, questions, notes, meanings, examples, exercises, MCQs and online tests for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) below.
Solutions of Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) questions in English are available as part of our CBSE Sample Papers For Class 10 for Class 10 & Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) solutions in Hindi for CBSE Sample Papers For Class 10 course. Download more important topics, notes, lectures and mock test series for Class 10 Exam by signing up for free. Attempt Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) | 50 questions in 90 minutes | Mock test for Class 10 preparation | Free important questions MCQ to study CBSE Sample Papers For Class 10 for Class 10 Exam | Download free PDF with solutions
Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 1

Which one of the following software comes under Open-Source Software category?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 1

Linux is an open source software. Open source software (OSS) is a software that is distributed with its source code, making it available for use, modification and distribution with its original rights.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 2

HTML tag to draw horizontal line:

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 2

<hr>tag is used to for horizontal rule. It is used to draw horizontal line in HTML. This tag is an empty tag and it does not require an end tag.

1 Crore+ students have signed up on EduRev. Have you? Download the App
Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 3

Secure data transmission means

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 3

Secure data transmission means data cannot be accessed by any unauthorized person during transmission. Secure means CANI i.e., confidentiality, authenticity, nonrepudiation and integrity.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 4

The correct HTML code to display(P+Q)2 is:

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 4

<SUP> tag defines superscript text in an HTML document. In (P+Q)2, 2 is the superscript text. So, the HTML code of (P+Q)2 is (P+Q)<SUP>2</SUP>.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 5

Which HTML tags cause browsers to render text as italics?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 5

<i> </i> tags are used to render text as italics. It represents a change in mood or quality of text.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 6

The correct HTML code for inserting an image is :

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 6

<img src = “image.gif ”> code is used for inserting an image and image’s name is ‘image’ with gif format.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 7

Which attribute is NOT valid for the <body> tag?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 7

Color is not a valid attribute for the <body> tag background attribute is used to specify a background image for a document. vlink attribute is used to specify the colour of a visited link in a document. bgcolor attribute is used to specify the background color of a document. 

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 8

Attribute is used to specify the location of an image file.

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 8

SRC attribute is required and contains the path to the image you want to embed. This attribute is used in <img> tag.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 9

Which of the following is NOT an example of Intellectual Property rights?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 9

Intellectual property rights are the rights given to persons over the creations of their minds. Patent, Trademark, Industrial design are examples of intellectual property rights.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 10

The attribute of <img> tag specifies an alternate text for an image, if the image cannot be displayed due to any reason.

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 10

alt attribute of <img> tag specifies an alternate text for an image, if the image cannot be displayed due to any reason.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 11

While creating a Web document, which unit is used to express an image’s height and width?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 11

height and width attribute of <img> tag are used to define the height and width of the image. Values of these attributes are considered as pixel.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 12

Preeti needs to send a very confidential message to her colleague in office over a secure channel. She uses a technique wherein an actual message (which is in readable form) can be converted into an unreadable message. This concept is known as________

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 12

Preeti should use the concept named encryption. Encryption is the method by which information is converted into secret code that hides the information’s true meaning.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 13

Which is the correct way to comment out something in HTML?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 13

The HTML comment tag is used to add text to an HTML document without including that text in the web page. Comment tag is shown with <! - - and - ->

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 14

The default alignment of images, that are inserted in Web page, is:

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 14

The default alignment of images that are inserted in web page is inline with text.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 15

Which of the following techniques can be used for security of data?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 15

There are various techniques used for security of data as Authentication, Authorization and Encryption. Authentication is the process of determining whether someone or something is, in fact, who or what it declares itself to be.
Authorization is the process of giving someone permission to do or have something.
Encryption is the method by which information is converted into secret code that hides the information’s true meaning.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 16

Which of the following is not a cybercrime?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 16

Cybercrime is criminal activity that either targets or uses a computer, a computer network or an networked device. Plagiarism, Phishing and hacking are cuber crime.
Using licensed software is not a cybercrime.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 17

________ is a software for which exclusive rights of modification in the source code remain with the owner.

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 17

Proprietary software is a software for which exclusive rights of modification in the source code remain with the owner. Examples of proprietary software include Microsoft Windows, Adobe Flash Player, Adobe Photoshop, Google Earth etc. 

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 18

A is the right given by the government to an inventor to protect his/ her invention from being used/ copied for a fixed period of time.

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 18

A patent is the copy right given by the government to an inventor to protect his/her invention from being used/copied for a fixed period of time.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 19

Which of these is NOT an attribute of the font tag?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 19

type is not an attribute of the font tag. <font> tag defines the font size, color and face of text in the HTML document.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 20

The < __________ > tag displays text in subscript form.

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 20

<sub> tag displays text is subscript form for example, in the chemical formula CO2, the number 2 is rendered as subscript which has a smaller font and appears with a lowered baseline.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 21

Riya wants to buy and sell goods online, which term is used to describe this process?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 21

Riya is used to describe the e-commerce process. E-commerce is the buying and selling of goods or services via the internet, and the transfer of money and data to complete the sales.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 22

Consider the following HTML code:
<input type = “radio” name = “gender” value = “male” checked>Male.
<input type = “radio” name = “gender” value = “Female” checked>Female.
<input type = “radio” name = “gender” value = “Others” checked>Others.
Choose the correct output that would be shown upon execution of the above code, from the choice given below:

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 22

To create a radio button, <INPUT> tag is used in which type attribute includes radio as its value that defines the radio button.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 23

Raman is an employer of ABC company. He wants a software for which he paid what type of software is raman using?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 23

Raman is using proprietary software.
Proprietary software is available only after buying the proper license of the software. More over, it has proper copyright and license.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 24

Identify the HTML tag used to include numbered list in HTML web page.

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 24

<OL> tag defines an ordered list. An ordered list can be numerical or alphabetical. The <LI> tag is used to define each list item.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 25

Which attribute is used to Insert an empty line in the webpage.

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 25

<BR> tag is used to insert an empty line in the web page. This is an empty tag i.e., no need of closing tag. You can also use the <BR> tag to insert one or more blank lines.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 26

A _______ is defined as an exclusive right granted for an invention.

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 26

Patent provides protection for novel technical solutions to problems. A patent provides patent owners with protection for their inventions. Patent applications are published after 18 months. A patent applies for a maximum of 20 years.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 27

Which of the following tag is required when the user has to give some input/data?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 27

The <INPUT> tag is requied when the user has to give some input/data. This tag is always used within the FORM tag. Thus, INPUT tag defines a FORM element which can receive user input. The Type attribute determines the specific sort of FORM element to be created i.e., this attribute specifies the type of input we want from the user.
It can be used to create the following type of interface elements:
(a) BUTTON
(b) CHECKBOX
(c) RADIO
(d) TEXT
(e) SUBMIT and RESET
(f) IMAGE
(g) FILE
<INPUT TYPE = “BUTTON”>: This will place a button on an HTML form.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 28

In HTML, the tag <HTML> is same as:

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 28

Case sensitive means both uppercase and lowercase letters are treated as same. Thus, in HTML, tag and attributes are not case-sensitive.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 29

Which term is used for copying of data or computer software without the owner ’s permission?

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 29

Software piracy means copying of data or computer software without the owner’s permission. However, most people are aware about piracy and know that it is illegal, yet the piracy is uncontrollable. This is simply the notation of intellectual property rights and right to privacy.

Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 30

An unordered list of items are marked with

Detailed Solution for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) - Question 30

An unordered list is a bulleted list of items. The tags for an unordered list are <UL> and <UL>. It is used to create unordered list or bulleted list like to represent the list in the form of disc, square and circle. The data is defined under the <UL> tag, by using <LI> tag.
Syntax <UL>…</UL>

View more questions
303 docs|7 tests
Information about Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) Page
In this test you can find the Exam questions for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22) solved & explained in the simplest way possible. Besides giving Questions and answers for Test: Computer Science: CBSE Sample Question Paper- Term I (2021-22), EduRev gives you an ample number of Online tests for practice

Top Courses for Class 10

Download as PDF

Top Courses for Class 10