Search Header Logo

Mastering Pandas: A Quiz Challenge

Authored by Paul Hunter

Computers

University

Used 1+ times

Mastering Pandas: A Quiz Challenge
AI

AI Actions

Add similar questions

Adjust reading levels

Convert to real-world scenario

Translate activity

More...

    Content View

    Student View

30 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the correct way to import the pandas library in Python?

`import panda as pd`

`import pandas as pd`

`import Pandas`

`from pandas import *`

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What is the primary data structure used in pandas for tabular data?

Series

DataFrame

Array

List

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you create a DataFrame from a dictionary in pandas?

`pd.DataFrame(dictionary)`

`pd.Series(dictionary)`

`pd.Table(dictionary)`

`pd.Frame(dictionary)`

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to display the first 5 rows of a DataFrame?

`df.tail()`

`df.head()`

`df.first()`

`df.top()`

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the `df.info()` function provide?

Summary statistics of numerical columns

Data types and non-null counts of columns

Plots a graph of the DataFrame

Saves the DataFrame to a file

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which method is used to select a single column 'Age' from a DataFrame `df`?

`df['Age']`

`df.Age()`

`df.select('Age')`

`df.get('Age')`

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How do you select rows where the column 'Score' is greater than 80?

`df[df.Score > 80]`

`df['Score' > 80]`

`df.select(Score > 80)`

`df.loc[Score > 80]`

Access all questions and much more by creating a free account

Create resources

Host any resource

Get auto-graded reports

Google

Continue with Google

Email

Continue with Email

Classlink

Continue with Classlink

Clever

Continue with Clever

or continue with

Microsoft

Microsoft

Apple

Apple

Others

Others

Already have an account?