DataFrame and Series

DataFrame and Series

12th Grade

10 Qs

quiz-placeholder

Similar activities

A3 IIIB - Básicas de EDA

A3 IIIB - Básicas de EDA

11th Grade - University

10 Qs

Python Pandas (ai gen)

Python Pandas (ai gen)

12th Grade

10 Qs

Dataframe

Dataframe

10th - 12th Grade

12 Qs

Series Object-Quiz-I

Series Object-Quiz-I

12th Grade

10 Qs

XII Series

XII Series

12th Grade

15 Qs

Pandas

Pandas

12th Grade

10 Qs

Python Pandas/MatPlotLib

Python Pandas/MatPlotLib

12th Grade

9 Qs

pandas

pandas

9th Grade - University

8 Qs

DataFrame and Series

DataFrame and Series

Assessment

Quiz

Computers

12th Grade

Hard

Created by

Vijayalakshmi Kavoor

Used 8+ times

FREE Resource

10 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

45 sec • 1 pt

State the following statement as true or false

"DataFrame values are immutable"

True

False

2.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Predict the o/p of the following:

import pandas as pd

s=[6,4,2]

s1=pd.Series(s*2)

print(s1+2)

0 14

1 10

2 6

dtype: int64

0 8

1 6

2 4

3 8

4 6

5 4

dtype: int64

0 8

1 6

2 4

dtype: int64

3.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The following code create a dataframe named ‘D1’ with _______________ columns.

import pandas as pd

D1 = pd.DataFrame([1,2,3] )

1

2

3

4.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Predict the output

import pandas as pd


s1=pd.Series(1000,index=range(100,500,100))

print(s1)

100 1000

500 1000

100 1000

dtype: int64

100 1000

200 1000

300 1000

400 1000

500 1000

dtype: int64

100 1000

200 1000

300 1000

400 1000

dtype: int64

100 1001

200 1002

300 1003

400 1004

dtype: int64

5.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Size attribute of the data frame returns total number of rows of the data frame

False

True

6.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

Suppose df is a data frame created from the dictionary,Column labels of the data frame df are displayed from

values

keys

keys and values

Nine of the above

7.

MULTIPLE CHOICE QUESTION

1 min • 1 pt

The attribute returns true if they are any NaN is

values

Nans

hasnans

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?