wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

Data Analytics and Artificial Intelligence

Total questions: 10

Worksheet time: 6mins

Name
Class
Date
1.

Why is data cleaning important in data analytics?

a)

Data cleaning is important in data analytics because it helps to ensure accuracy, consistency, and reliability of the data, which is essential for making informed decisions and drawing accurate conclusions.

b)

Data cleaning is important in data analytics because it is a time-consuming process with no real benefits.

c)

Data cleaning is not important in data analytics because the data is already accurate and reliable.

d)

Data cleaning is important in data analytics because it helps to introduce errors and inconsistencies into the data.

2.

What is descriptive analytics?

a)

Descriptive analytics predicts future outcomes based on historical data

b)

Descriptive analytics is a type of data analysis that describes what has happened in the past by using historical data to better understand and explain business performance.

c)

Descriptive analytics analyzes real-time data to make business decisions

d)

Descriptive analytics focuses on identifying trends and patterns in data

3.

Which library is commonly used for machine learning?

a)

pandas

b)

numpy

c)

scikit-learn

d)

matplotlib

4.

>> a = np.random.uniform(low=1., high=3.5, size=4)

>> ...

>> a

output:

array([2.144, 2.348, 3., 2.483])

a)

np.round(a)

b)

np.sort(a)

c)

a = np.round(a,1)

d)

a = np.round(a,3)

5.

What are some common techniques used for data cleaning?

a)

Some common techniques used for data cleaning include removing duplicates, handling missing data, correcting errors, and standardizing data formats.

b)

Ignoring missing data

c)

Introducing more errors to the data

d)

Adding more duplicates to the dataset

6.

Which of the following is not a function in the pandas package

a)

random

b)

Series

c)

sort

d)

read_csv

7.

What are the different types of machine learning algorithms?

a)

The different types of machine learning algorithms include only supervised learning

b)

The different types of machine learning algorithms include supervised learning, unsupervised learning, semi-supervised learning, reinforcement learning, and deep learning.

c)

The different types of machine learning algorithms include only reinforcement learning

d)

The different types of machine learning algorithms include only decision tree learning

8.

If there is a question, "How can we cut down on the number of people we employ without reducing the quality of our product?" at the "Determine What You're Going to be Measuring" stage. Which of the following is not relevant to measure?

a)
  • The number of annual customers

b)
  • How much the business pays these employees each month

c)

Number of employees who like playing football

d)
  • The amount of time these employees are currently spending on actually making the product

9.

The second stage carried out in data analysis is...

a)

Setting of goals

b)

Clearly setting priorities for measurement

c)

Data gathering

d)

Data scrubbing

10.

>> np.random.seed(20)

>> a = np.random.uniform(low=1., high=2.5, size=4)

>> a

output:

array([1.88, 2.35, 2.34, 2.5])

>> ...

>> a

output:

array([1.88, 2.35, 2.34, 2.5])

a)

a[0] = 1.882

b)

a[1] = 2.351

c)

a[0, 1] = 2.34

d)

a[3] = 2.50