0% found this document useful (0 votes)
4 views3 pages

Worksheet 2 - Answers

The document consists of a worksheet with questions and answers related to assertions about internet behavior, social media, and programming with Python using the Pandas library. It includes case studies about digital footprints, internet trolls, and copyright issues. The answers provided indicate the correct options for each question based on the scenarios described.

Uploaded by

anubhav77175
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views3 pages

Worksheet 2 - Answers

The document consists of a worksheet with questions and answers related to assertions about internet behavior, social media, and programming with Python using the Pandas library. It includes case studies about digital footprints, internet trolls, and copyright issues. The answers provided indicate the correct options for each question based on the scenarios described.

Uploaded by

anubhav77175
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 3

Worksheet – 2

Workshop on Pandas with Lovejeet Ar.


Answers
Q. 11:
Assertion (A) : An Internet troll is a person who deliberately sows discord on the Internet by
starting quarrels or upsetting people.
Reason (R) : We can download and use any material available on the Internet.

A. Both A and R are true and R is the correct explanation of A


B. Both A and R are true but R is not the correct explanation of A
C. A is true but R is false
D. A is false but R is true
E. Both A and R are false
Ans C

Q. 12:
Assertion (A) : Social media are websites or applications that enable their users to participate in social networking but
they cannot create and share content with others in the community.
Reason (R) : We should not waste precious time in responding to unnecessary emails or comments unless they have
some relevance for us.

A. Both A and R are true and R is the correct explanation of A


B. Both A and R are true but R is not the correct explanation of A
C. A is true but R is false
D. A is false but R is true
E. Both A and R are false
Ans D
Case Study based questions
Q.13 ABC Enterprises is selling its products through three salesmen and keeping the records of sales done quarterly of
each salesman as shown below:

Quarter 1 Quarter 2 Quarter 3 Quarter 4

Salesman 1 23000 18000 30000 35000

Salesman 2 11000 15000 20000 22000

Salesman 3 60000 40000 35000 55000

Company is storing the above information in a CSV file “Qtrly_Sales.csv”. Mr. Rohit is a programmer.
Company has given him the responsibility to create the program to visualise the above data. He wrote Python code
but he is facing some difficulties. Help him by giving the solutions of following situation:
Python code:
1 import pandas as pd
2 import as plt
3 df= ("Qtrly_Sales.csv")
4 df.plot( ='bar', color=['red','blue','brown',’green’])
5 plt. ('Quarterly Report')
Worksheet – 2
Workshop on Pandas with Lovejeet Ar.
Answers
6 plt.xlabel('Salesman')
7 plt.ylabel('Sales') 8
plt. ()

1. Choose the correct Python library out of following options in line 2


A. matplotlib B. matplotlib.plot
C. py.plot D. matplotlib.pyplot

Ans. D
2. Choose the correct option to read the csv file in line 3
A. read_csv B. pd.read_csv
C. pd.get_csv D. get_csv

Ans B
3. Choose the correct option to select the type of graph in line 4
A. type B. kind
C. style D. graph

Ans B
4. Choose the correct word to give the heading in line 5
A. label B. heading
C. title D. caption

Ans C
5. Choose the correct word to display the graph in line 8
A. plot() B. display()
C. showgraph() D. show()

Ans D
Q.14. Abhishek uses computer and mobile for his personal use. Study the following cases and answer the
questions given below.
(1) Once he got the message in Whatsapp that CBSE is announcing the result of class XII tomorrow at
12:00 pm. He forwarded the message to his few friends. But later he came to know that no such
announcement was there in CBSE official web-site.
(2) He is visiting several web-sites.
(3) He is getting abuse messages from an unknown number due to which he is thinking of quarreling with that
person.
(4) He registered himself in one website by giving his email id and phone number but later his friend told him
about the concept of digital footprint. He is now thinking about canceling the registration so that his personal
information can be deleted from that website.
(5) He uploaded one video in his youtube channel where he used one background music downloaded from
somewhere on Internet
Worksheet – 2
Workshop on Pandas with Lovejeet Ar.
Answers
a. In case (1), he is violating :
A. net etiquettes B. Communication etiquettes
C. copy right D. None of the above
Ans B
b. In case (2) , he is leaving:
A. Active digital footprint B. Passive digital footprint
C. There is no chance of any digital footprint
D. None of the above
Ans B

c. In case (3), the unknown person can be called as:


A. Cyber buller B. Internet troll
C. Hacker D. Cracker
Ans B
d. In case (4) which one is correct:
A. His data will be deleted forever after cancelling the registration.
B. His data will be deleted after 30 days since it is a digital footprint.
C. His data will never be deleted since it became the digital footprint.
D. As per the terms and condition of that website, data will be deleted.
Ans C
e. In case (5), he may be violating:
A. copyright B. Intellectual property right
C. plagiarism D. None of the above Ans
A

You might also like