Given the following DataFrame, how would you sort it by City in ascending order and then by Age in descending order?
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
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 Quizizz
16 questions
Mikhail PS4 and doubles

Quiz
•
1st Grade
20 questions
National 5 Programming (VB and Theory)

Quiz
•
1st - 11th Grade
21 questions
lesson 31

Quiz
•
1st Grade
15 questions
Keyboard

Quiz
•
1st Grade
15 questions
Administración básica del sistema

Quiz
•
1st Grade
15 questions
Introdução segurança cibernética

Quiz
•
1st Grade
16 questions
Y9 refresher

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

Quiz
•
1st Grade - University
Popular Resources on Quizizz
15 questions
Multiplication Facts

Quiz
•
4th Grade
20 questions
Math Review - Grade 6

Quiz
•
6th Grade
20 questions
math review

Quiz
•
4th Grade
5 questions
capitalization in sentences

Quiz
•
5th - 8th Grade
10 questions
Juneteenth History and Significance

Interactive video
•
5th - 8th Grade
15 questions
Adding and Subtracting Fractions

Quiz
•
5th Grade
10 questions
R2H Day One Internship Expectation Review Guidelines

Quiz
•
Professional Development
12 questions
Dividing Fractions

Quiz
•
6th Grade