Sample question paper and answer key for Computer Applications class 10 CBSE Term 1 exam. Study these important questions for class 10th Computer Applications exam.
- Sample Question Paper (Term 1) and Answer Key
- Class: X Session: 2021-22
- Subject: Computer Applications (Code 165)
- Maximum Marks: 25 Time Allowed: 90 Minutes
1. Which one of the following software comes under Open-Source Software category?
a. Photoshop b. Ms-Paint c. Linux d. WindowsThe answer is Linux. Linux software comes under Open-Source Software category.
2. HTML tag to draw horizontal line:
a. <hl> b. <hr> c. <hline> d. None of the aboveThe answer is <hr>. <hr> tag to draw horizontal line.
3. Secure data transmission means
a) Data is accessible by any unauthorized person during transmission. b) Data can not be accessed by any unauthorized person during transmission. c) Transmission of data happens easily d) Noone can access itThe answer is 'Data can not be accessed by any unauthorized person during transmission.' Secure data transmission means, Data can not be accessed by any unauthorized person during transmission.
4. The correct HTML code to display(P+Q)2 is:
a. <SUB>(P+) 2</SUB> b. P+Q <SUP> 2 </SUP> c. (P + Q)<SUP> 2 </SUP> d. <SUP> (P+Q) 2</SUP>The answer is (P + Q)<SUP> 2 </SUP>.
5. Which HTML tags cause browsers to render text as italics?
a. <text style = “italics”></text> b. <ital.></ital.> c. <i></i> d. <b></b> The answer is <i></i>. The HTML tags '<i></i>' cause browsers to render text as italics6. The correct HTML code for inserting an image is:
a. <img href=”image.gif”> b. <img> image.gif</gif> c. <image src = “image.gif”> d. <img src = “image.gif”>The answer is <img src = “image.gif”>. The correct HTML code for inserting an image is <img src = “image.gif”>.
7. Which attribute is NOT valid for the <body> tag?
a. background b. color c. vlink d. bgcolorThe answer is color.
8. ____________attribute is used to specify the location of an image file.
a. alt b. src c. align d. nameThe answer is SRC. SRC attribute is used to specify the location of an image file.
9. Which of the following is NOT an example of Intellectual Property rights?
a. Patent b. Trademark c. Password d. Industrial DesignThe answer is Password. 'Password' is NOT an example of Intellectual Property rights.
10. The_________ attribute of <img> tag specifies an alternate text for an image, if the image cannot be displayed due to any reason.
a. alt b. alternate c. tooltip d. textThe answer is ALT. The ALT attribute of <img> tag specifies an alternate text for an image, if the image cannot be displayed due to any reason.
11. While creating a Web document, which unit is used to express an image’s height and width?
a. Centimeters b. Pixels c. Dots per inch d. InchesThe answer is Pixels. While creating a Web document, Pixels unit is used to express an image's height and width.
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________________
a. Encryption b. Decryption c. Plagiarism d. Data Security.The answer is Encryption. The concept is known as Encryption.
13. Which is the correct way to comment out something in HTML?
a. Using ## and # b. Using <!-- and --> c. Using </-- and -/-> d. Using <!-- and -!>The answer is 'Using <!-- and -->'. Using '<!-- and -->' is the correct way to comment out something in HTML
14. The default alignment of images, that are inserted in Web page, is:
a. left b. right c. inline with text d. middleThe answer is inline with text. The default alignment of images, that are inserted in a Web page, is inline with text.
15. Which of the following techniques can be used for security of data?
a. Authentication b. Authorisation c. Encryption d. All of the AboveThe answer is All of the Above.
16. Which of the following is not a cybercrime?
a. Plagiarism b. Phishing c. using licensed software d. hackingThe answer is 'using licensed software'.
17. _________ is a software for which exclusive rights of modification in the source code remain with the owner.
a. Free Open-Source Software b. Freeware c. Open-Source Software d. Proprietary SoftwareThe answer is Proprietary Software. Proprietary Software is software for which exclusive rights of modification in the source code remain with the owner.
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.
a. Copyright b. Intellectual Property c. Patent d. TrademarkThe answer is Patent. A Patent is a right given by the government to an inventor to protect his/ her invention from being used/copied for a fixed period of time.
19. Which of these is NOT an attribute of the font tag?
a. color b. face c. type d. sizeThe answer is Type.
20. The <_________> tag displays text in subscript form.
a. sub b. sup c. sups d. subs.The answer is sub. The <sub> tag displays text in subscript form.
Section-B: This section contains 20 questions. Answer any 16 questions.21. Arun clicks on a link received in a message on his phone which promises him a complimentary trip to a destination of his choice. He forwarded this message to his friend, Panshul and asked him to do the same. But Panshul refuses and tells Arun that his personal and private information, such as online account names, login information and passwords can be stolen and he should be careful of such ____________ attacks.
a. Phishing b. Spamming c. Scamming d. PlagiarismThe answer is Phishing.
22. Consider the following HTML code:
<ol type='i'> <li>First</li> <li>Second</li> <li>Third</li> <li>Fourth</li> </ol> Choose the correct output that would be shown upon execution of the above code, from the choices given below: