Pandas DataFrame Quiz

Pandas DataFrame Quiz

11th Grade

10 Qs

quiz-placeholder

Similar activities

DataFrame Revision

DataFrame Revision

11th Grade - University

10 Qs

Մոդուլներ

Մոդուլներ

11th Grade

10 Qs

Python Pandas

Python Pandas

11th - 12th Grade

10 Qs

Dataframe

Dataframe

10th - 12th Grade

12 Qs

MCQs on CSV in DataFrame (Python)

MCQs on CSV in DataFrame (Python)

11th Grade

10 Qs

Analisis Data Deforestasi (PLB)

Analisis Data Deforestasi (PLB)

11th Grade

10 Qs

บทที่ 2 2.1 ม.3/2

บทที่ 2 2.1 ม.3/2

9th - 12th Grade

7 Qs

บทที่ 2 2.1 ม.3/4

บทที่ 2 2.1 ม.3/4

9th - 12th Grade

7 Qs

Pandas DataFrame Quiz

Pandas DataFrame Quiz

Assessment

Quiz

Computers

11th Grade

Hard

Created by

Sarafali S

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In the given code, the dataframe ‘D1’ has ______ rows and ____ columns.

import pandas as pd

LoD = [{‘a’:10, ‘b’:20}, {‘a’:5, ‘b’:10, ‘c’:20}, {‘a’:7, ‘d’:10, ‘e’:20}]

D1 = pd.DataFrame(LoD)

3, 3

3, 4

3, 5

None of the above

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

D1[ : ] = 77 will set ____ values of a DataFrame ‘D1’ to 77.

Only First Row

Only First Column

All

None of the above

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following statement will df = df.drop(['Name', 'Class', 'Rollno'], axis = 1) #df is a DataFrame object

delete three columns having labels ‘Name’, ‘Class’, and ‘Rollno’.

delete three rows having labels ‘Name’, ‘Class’, and ‘Rollno’.

delete any three columns

return error

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following are ways of indexing to access data elements in a DataFrame?

Label-based indexing

Boolean Indexing

All of the above

None of the above

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The following statement is >>> DF=DF.rename({‘Maths’:’Sub1′,‘Science’:’Sub2′}, axis=’index’) #DF is a DataFrame

altering the column labels

altering the row and column labels (both)

Error

altering the row labels

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following statements is transposing the DataFrame ‘DF1’?

DF1.transpose

DF1.T

DF1.Trans

DF1.t

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

CSV stands for:

Comma-Separated Values

Comma Separated Variables

Column Separated Values

Column-Separated Variables

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?