Pandas ADSC Practice

Quiz
•
Computers
•
1st Grade
•
Hard
Tejas Kalpathi
Used 2+ times
FREE Resource
20 questions
Show all answers
1.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Given the following DataFrame, how would you sort it by City in ascending order and then by Age in descending order?
df.sort_values(by='City').sort_values(by='Age', ascending=False)
df.sort_values(by=['City', 'Age'], ascending=[True, False])
df.sort(['City', 'Age'], ascending=[True, False])
df.sort_values(by=['City', 'Age'], ascending=[False, True])
2.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How would you filter the DataFrame to select rows where Age is greater than 25 or City is 'Chicago'?
df[(df['Age'] > 25) & (df['City'] == 'Chicago')]
df[(df['Age'] > 25) | (df['City'] == 'Chicago')]
df.query('Age > 25 and City == "Chicago"')
df[df['Age'] > 25 and df['City'] == 'Chicago']
3.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Given the following DataFrame, how would you increase each employee's Salary by 10%?
df['Salary'] *= 1.10
df['Salary'] = df['Salary'] + 10000
df['Salary'] = df['Salary'].apply(lambda x: x * 1.10)
df['Salary'].update(df['Salary'] * 1.10)
4.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How do you drop the Age column from the DataFrame permanently?
df = df.drop('Age', axis=1)
df.drop(columns='Age', inplace=True)
df.remove('Age')
del df['Age']
5.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
Given the following DataFrame, how would you fill missing values in the Age column with the mean age?
df['Age'].fillna(df['Age'].mean(), inplace=True)
df.fillna(df.mean(), inplace=True)
df['Age'] = df['Age'].replace(np.nan, df['Age'].mean())
df['Age'] = df['Age'].interpolate()
6.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How would you select only the Name and Salary columns from the DataFrame?
df[['Name', 'Salary']]
df.loc[:, ['Name', 'Salary']]
df.iloc[:, [0, 2]]
All of the above
7.
MULTIPLE CHOICE QUESTION
30 sec • 1 pt
How would you rename the column Salary to Income?
df.rename(columns={'Salary': 'Income'}, inplace=True)
df.columns = ['Name', 'Income']
df.set_axis(['Name', 'Income'], axis=1, inplace=True)
df.rename_axis(columns='Income')
Create a free account and access millions of resources
Similar Resources on Wayground
15 questions
BE 4 UPS1-D1M3T11

Quiz
•
1st - 5th Grade
20 questions
Season 5 #Spaic Python Weekly Quiz

Quiz
•
KG - Professional Dev...
20 questions
Competition_Formakt_Final

Quiz
•
1st Grade
15 questions
Keyboard

Quiz
•
1st Grade
15 questions
The Data Protection Act

Quiz
•
KG - 9th Grade
20 questions
Programming Quiz

Quiz
•
1st - 10th Grade
20 questions
The Key board

Quiz
•
1st - 3rd Grade
15 questions
AV1\R1 3TEC_Ciência de Dados - Aula 01 a 16

Quiz
•
1st Grade - University
Popular Resources on Wayground
10 questions
SR&R 2025-2026 Practice Quiz

Quiz
•
6th - 8th Grade
30 questions
Review of Grade Level Rules WJH

Quiz
•
6th - 8th Grade
6 questions
PRIDE in the Hallways and Bathrooms

Lesson
•
12th Grade
10 questions
Lab Safety Procedures and Guidelines

Interactive video
•
6th - 10th Grade
10 questions
Nouns, nouns, nouns

Quiz
•
3rd Grade
25 questions
Multiplication Facts

Quiz
•
5th Grade
11 questions
All about me

Quiz
•
Professional Development
15 questions
Subtracting Integers

Quiz
•
7th Grade