Data Science for Change SAMPLE QUESTIONS

Data Science for Change SAMPLE QUESTIONS

12th Grade

9 Qs

quiz-placeholder

Similar activities

7th Grade Basic Matrix Quiz/Review

7th Grade Basic Matrix Quiz/Review

8th Grade - University

12 Qs

Matrix Operations and Inverse

Matrix Operations and Inverse

12th Grade - University

14 Qs

Matrices

Matrices

10th - 12th Grade

10 Qs

MATLAB 2

MATLAB 2

KG - University

10 Qs

Add/Subtract/Scalar Multiplication/Dimensions of Matrices

Add/Subtract/Scalar Multiplication/Dimensions of Matrices

11th - 12th Grade

12 Qs

Matrix Word Problems

Matrix Word Problems

10th - 12th Grade

11 Qs

Adding and Subtracting in Columns

Adding and Subtracting in Columns

11th Grade - University

14 Qs

Blanton-Adding and Subtracting matrices

Blanton-Adding and Subtracting matrices

11th - 12th Grade

13 Qs

Data Science for Change SAMPLE QUESTIONS

Data Science for Change SAMPLE QUESTIONS

Assessment

Quiz

Mathematics

12th Grade

Hard

Created by

Susan Palmer

FREE Resource

9 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

In which phase of the data science life cycle would a researcher be most concerned with the possibility of confirmation bias?

Ask Questions

Consider Data

Analyze Data

Interpret Data

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which question is unbiased?

Why is it best for a dress code to exist?

Would you prefer to eat a delicious steak or a plain sandwich?

How many hours do you typically sleep per night?

Should concerned dog owners vaccinate their pets?

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You are asked to rephrase the following question so that it is not biased: "Where do you like to party on the weekends?" Which would be the best replacement for this question?

It is not biased as is.

Do you like to party or stay home on the weekends?

When you party on the weekends, where do you like to go?

What do you like to do on the weekends?

4.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

The columns of a data frame named df are as follows: - customer name - phone number - email - company - date of service Which use of dot notation would not cause an error?

print(df.customername)

print(df.phone_number)

print(df.company)

print(df.email.company)

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which rows and columns would be printed using the following command? print(df.iloc[6: , 20:24])

Rows with indices 0 to 5 and columns with indices 20 to 23

Rows with indices 0 to 6 and columns with indices 20 to 24

Rows with indices 20 to 23 and columns with indices 0 to 5

Rows with indices 20 to 24 and columns with indices 0 to 6

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Consider the following Series named s: Which command would print d as its output?

print(s.loc[2])

print(s.iloc[47])

print(s.iloc[2])

print(s.iloc[3])

7.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the function df.isnull().sum() do?

Lists which rows are duplicate entries.

Fills missing values with a specific value.

Drops all rows that have a missing value.

Lists the number of null values in each column.

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What should be added as a parameter to df.dropna() to drop columns instead of rows?

axis=0

axis=1

inplace=True

method="column"

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following would change a value of 84.59 to 84 in the grade column?

df.grade = round(df.grade, 0)

df.grade = pd.to_numeric(df.grade)

df.grade = df.grade.astype(int)

df.grade.fillna(float)