Use app×
Join Bloom Tuition
One on One Online Tuition
JEE MAIN 2026 Crash Course
NEET 2026 Crash Course
CLASS 12 FOUNDATION COURSE
CLASS 10 FOUNDATION COURSE
CLASS 9 FOUNDATION COURSE
CLASS 8 FOUNDATION COURSE
0 votes
3.8k views
in General by (53.7k points)
closed by

Mr. Som, a data analyst has designed the DataFrame df that contains data about Computer Olympiad with ‘CO1’, ‘CO2’, ‘CO3’, ‘CO4’, ‘CO5’ as indexes shown below. Answer the following questions:

A. Predict the output of the following python statement:

i. df.shape

ii. df[2:4]

B. Write Python statement to display the data of Topper column of indexes CO2 to CO4.

OR

Write Python statement to compute and display the difference of data of Tot_students column and First_Runnerup column of the above given DataFrame.

1 Answer

+1 vote
by (53.5k points)
selected by
 
Best answer

A. Output:

B. Python statement:

print(df.loc['CO2': 'CO4', 'Topper'])

OR

print(df.Tot_students-df.First_Runnerup)

Welcome to Sarthaks eConnect: A unique platform where students can interact with teachers/experts/students to get solutions to their queries. Students (upto class 10+2) preparing for All Government Exams, CBSE Board Exam, ICSE Board Exam, State Board Exam, JEE (Mains+Advance) and NEET can ask questions from any subject and get quick answers by subject teachers/ experts/mentors/students.

Categories

...