Pandas Part 4 - Attributes

Pandas Part 4 - Attributes

5th Grade

9 Qs

quiz-placeholder

Similar activities

U26 Q4 Number Systems

U26 Q4 Number Systems

KG - University

14 Qs

APP Lab Functions

APP Lab Functions

5th - 8th Grade

5 Qs

DBMS Quiz 3

DBMS Quiz 3

1st - 10th Grade

10 Qs

Algorithm

Algorithm

3rd - 6th Grade

10 Qs

HTML Quiz

HTML Quiz

KG - University

10 Qs

Year 3 computing homework ET23

Year 3 computing homework ET23

1st - 5th Grade

8 Qs

Y3 - Data - Branching Databases

Y3 - Data - Branching Databases

2nd Grade - University

11 Qs

Pandas Part 4 - Attributes

Pandas Part 4 - Attributes

Assessment

Quiz

Computers

5th Grade

Medium

Created by

Nidhi Singh

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A teacher records students' test scores but some students were absent. How can we check if there are missing scores?

scores.shape

scores.ndim

scores.hasnans

scores.nbytes

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A shop tracks the prices of five products. Which attribute will return "ProductPrices"?

prices.index

price.name

price.shape

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A student creates a Pandas Series to store the number of books read in each month. What will books_read.size return?

5

7

(5,)

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A school is storing students' roll numbers in a Pandas Series. What will roll_numbers.ndim return?

2

1

101,102,103,104

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A school is storing students' ages in a Pandas Series. Which attribute will return all the ages as an array?

ages.shape

ages.index

ages.values

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A football coach is tracking players' jersey numbers. What will jersey_numbers.shape return?

(5, )

5

7

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A store tracks the weight (in kg) of vegetables sold each day. Which attribute will tell us the number of items in the list (including missing ones)?

weights.shape

weights.size

weights.hasnans

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Media Image

A bakery is tracking the prices of cakes sold per day.

Which attribute will return "CakePrices"?

cake_prices.index

cake_prices.values

cake_prices.name

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which attribute will confirm if there are missing values in series?

shape

name

hasnans

ndim