Data Science for Engineers Lab A

Data Science for Engineers Lab A

9 Qs

quiz-placeholder

Similar activities

Scientific Method Quiz

Scientific Method Quiz

KG - University

10 Qs

Artificial Intelligence: Understanding the Basics Quiz

Artificial Intelligence: Understanding the Basics Quiz

KG - University

12 Qs

PESERTA STOCK TAKING

PESERTA STOCK TAKING

KG - University

12 Qs

(1/8)APCS 17 WEEKS until AP EXAM (old 7 wks)

(1/8)APCS 17 WEEKS until AP EXAM (old 7 wks)

10th Grade - University

9 Qs

Experimental Design Vocab

Experimental Design Vocab

KG - University

10 Qs

ข้อสอบหน่วย 1 (Big Data)

ข้อสอบหน่วย 1 (Big Data)

KG - University

10 Qs

แบบทดสอบหลังเรียน เรื่อง ความหมาย  และประเภทของซอฟต์แวร์

แบบทดสอบหลังเรียน เรื่อง ความหมาย และประเภทของซอฟต์แวร์

9th - 12th Grade

10 Qs

LKPD Individu Profesi Bidang Informatika

LKPD Individu Profesi Bidang Informatika

KG - University

9 Qs

Data Science for Engineers Lab A

Data Science for Engineers Lab A

Assessment

Quiz

others

Medium

Created by

Shreyansh Shukla

Used 1+ times

FREE Resource

9 questions

Show all answers

1.

OPEN ENDED QUESTION

30 sec • Ungraded

Name

Evaluate responses using AI:

OFF

2.

OPEN ENDED QUESTION

30 sec • Ungraded

Enrollment Number

Evaluate responses using AI:

OFF

3.

OPEN ENDED QUESTION

30 sec • Ungraded

Roll Number

Evaluate responses using AI:

OFF

4.

FILL IN THE BLANK QUESTION

30 sec • 3 pts

What is the difference between data scientist , data analyst and data engineer

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

What does the kernel in Jupyter Notebook do?
(a) It manages the styling of the notebook.
(b) It executes the code cells and manages the output.
(c) It restores deleted files.
(d) It formats the text output.

6.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

How can you remove rows with missing values (NAs) in a DataFrame?
(a) df.delete_na()
(b) df.remove_missing()
(c) df.dropna()
(d) df.clear()

7.

OPEN ENDED QUESTION

30 sec • Ungraded

Write a Python code snippet to drop all rows from a dataFrame where any of the values are NaN. Explain what happens if you use inplace=True.

Evaluate responses using AI:

OFF

8.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

You have a DataFrame df and want to reset its index after dropping some rows. What code would you use to reset the index without adding the old index as a new column?
df.reset_index(inplace=True)
df.reset_index(drop=True, inplace=True)
df.reset_index(add=False, inplace=True)
df.drop_index(inplace=True)

9.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following best describes 'measures of normality' and how they are evaluated in a dataset?
(a) Measures of normality determine how well data follow a normal distribution, and they can be evaluated using methods like the Shapiro-Wilk test or Q-Q plots.
(b)Measures of normality calculate the central value of a dataset, such as the mean or median.
(c) Measures of normality are used to visualize categorical data distributions with bar charts and pie charts.
(d) Measures of normality identify the relationship between two numerical variables using scatter plots.