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) Plagiarism
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:
a)
I. First
II. Second
III. Third
IV. Fourth
b)
i. First
ii. Second
iii. Third
iv. Fourth (color is idicating correct answer only)
c)
I First
II Second
III Third
IV Fourth
d)
i First
ii Second
iii Third
iv Fourth
23 Charlene is an artist. She displays her artwork on the Internet using her website to attract buyers. One day while browsing the Internet she discovers that another artist has displayed her painting portraying it as his own. Which right of Charlene was infringed?
a) Digital Privacy right
b) Intellectual Property Rights
c) Digital Property right
d) Intellectual Privacy right
24 Which of the following will result in the largest text size?
a) <H3>
b) <H6>
c) <H2>
d) <H4>
25 We can create a numbered list using the __________ tag.
a) <UL>
b) <list>
c) <OL>
d) <DL>
26 Which of these is NOT an example of Cyber bullying?
a) Copying a classmate’s personal photo against his/her permission from his social media account and sending it to other friends on their emails
b) Bullying a classmate in the school corridor
c) Threatening someone on whatsapp
d) Posting mean messages about someone on their social media
27 Identify which of the following type of list will create a bulleted list.
a) Unordered
b) Ordered
c) Definition
d) Numbered
28 Which sequence of HTML tags is correct?
a) <html><head><title></title></head><body></body></html>
b) <html><head><title><body></title></head></body></html>
c) <html><head><title</head><body></body>></title></</html>
d) <html><head><title><body></body ></title></head ></html>
29 Pratham is excited to use a new software which is freely available to download but he cannot modify or change the source code. Pratham is using _______.
a) Freeware
b) Open-Source Software
c) Both a and b
d) None of the above
30 Priyanshu has written the following code snippet as part pf an HTML program.
<B> Mystery Moon </B>
Predict the output of the above from the following:
a) Mystery Moon
b) Mystery Moon (color is idicating correct answer only)
c) Mystery Moon
d) Mystery Moon
31 Consider the following code:
<img src="Computers.jpg" width=" ________ " height="________”>
Fill in the blanks to set the image size to be 250pixels wide and 400 pixels tall.
a) 250, 400
b) 400, 250
c) <250><400>
d) <400><250>
32 Tag (s) required to create Description lists in HTML:
a) <DL>
b) <DT>
c) <DD>
d) All of the above
33 Which of the following is NOT a reason for the digital divide in different demographic regions?
a) Cost of Technology
b) Lack of information
c) Lack of access to high performance computers
d) Lack of access to the disabled.
34 One of the most popular method of encrypting data is Ceaser cipher where original data is replaced by a key character like if key is -2 than ‘a’ will be replaced by ‘y’, ‘b’ is replaced by ‘z’ and so on.
If the key is 2 i.e. Every letter is replaced by its next to next letter means the letter 'A' will be replaced by 'C', the letter 'B' is replaced by 'D', and so on then what will be the replacement of the word 'CoMpUtEr'.
a) Eqorwvgt
b) eQOrwVtG
c) eqroWVTG
d) EqOrWvGt
35 Consider the following form control in a HTML form:
🔘Male
🔘Female
Now choose the correct line of code for the above:
a) <input type = “radio” name= “Gender” value= “male”>Male<br>
<input type = “radio” name= “Gender” value= “female”>Female<br>
b) <input type = “radiobutton” name= “Gender” value= “male”>Male<br>
<input type = “radiobutton” name= “Gender” value= “female”>Female<br>
c) <input type = “radio”, name= “Gender”>< value= “male”>Male
<input type = “radio”, name= “Gender”>< value= “female”>Female
d) <input type = “radio” name= “Gender” value= “male”><br>
<input type = “radio” name= “Gender” value= “female”><br>
36 Gagandeep has written the following code to display an image in the background of HTML document:
<BODY BgGround= “Animals.jpeg”>
but he is not getting the desired output. Help him in identifying correct code from the following:
a) <BODY Bg= “Animals.jpeg”>
b) <BODY BACK= “Animals.jpeg”>
c) <BODY BGIMAGE= “Animals.jpeg”>
d) <BODY BACKGROUND= “Animals.jpeg”>
37 Which of the following is a way to avoid Plagiarism when using material from the Internet?
i. Citing
ii. Paraphrasing
iii. Referencing
iv. embedding
Choose the correct option:
a) i and ii only
b) Only i
c) i, ii and iii only
d) ii and iv only
38 Tag to create password field in HTML document:
a) <password>
b) <input>
c) <pwd>
d) <pword>
39 Which of the following tag is used to define options in a drop-down selection list?
a) <select>
b) <list>
c) <dropdown>
d) <option>
40 Which of the following is the correct way to create a list using the lowercase letters?
a) <ol alpha = "a">
b) <ol type = "a">
c) <ol letter = "a">
d) None of the above