Python Pandas Quiz Class 12

Python Pandas Quiz Class 12

12th Grade

146 Qs

quiz-placeholder

Similar activities

Code.org Unit 3 Games and Animations

Code.org Unit 3 Games and Animations

9th - 12th Grade

151 Qs

arcc

arcc

12th Grade

142 Qs

A Level computer science re-cap

A Level computer science re-cap

12th Grade

145 Qs

HSC SDD Key Terms

HSC SDD Key Terms

11th - 12th Grade

145 Qs

IBA Review Questions

IBA Review Questions

6th - 12th Grade

150 Qs

Year 12 Week 8 Quizziz Term 1 2022

Year 12 Week 8 Quizziz Term 1 2022

10th - 12th Grade

150 Qs

Ôn tập HK2

Ôn tập HK2

12th Grade

148 Qs

Python Test 2

Python Test 2

9th - 12th Grade

150 Qs

Python Pandas Quiz Class 12

Python Pandas Quiz Class 12

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Ashok Uttam

FREE Resource

146 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In a DataFrame, axis-0 is for

Columns

Rows and Columns both

Rows

None of these

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To get the Transpose of a DataFrame D1, you can write _____________.

D1.T

D1.Transpose

D1.swap

All of these

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To display the 3rd, 4th and 5th columns from the 6th to 9th rows of a dataframe DF, you can write ________.

DF.loc[6:9, 3:5]

DF.loc[6:10, 3:6]

DF.iloc[6:10, 3:6]

DF.iloc[6:9, 3:5]

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which among the following can be used to create a DataFrame in Pandas?

A scalar value

An ndarray

A python dictionary

All of these

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

To delete a row from a DataFrame, you may use the __________ statement.

remove

delete

drop

cancel

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You have a Pandas dataframe (assigned to the variable df) with the given data. Which of the following code snippets will return the temperature and rainfall of rows 2 and 3?

df[['temperature','rainfall']][1:3]

df['temperature', 'rainfall'][1:3]

df.iloc[1:3]

df.iloc[1:3,1:2]

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select the most suitable option. Statement I: A DataFrame is size mutable. Statement II: A series cannot contain duplicate indexes.

I is False and II is True

I is True and II is True

I is False and II is False

I is True and II is False

Create a free account and access millions of resources

Create resources
Host any resource
Get auto-graded reports
or continue with
Microsoft
Apple
Others
By signing up, you agree to our Terms of Service & Privacy Policy
Already have an account?