wayground logo

Free Printable Worksheets

NEW

Font size

S
M
L
XL
Worksheets

Final Data Analytics

Total questions: 50

Worksheet time: 46mins

Name
Class
Date
1.

Which of the following is correct?

a)

Information is processed Data

b)

Data is processed information

c)

Data is information

2.

What is data?

a)

Individual facts or statistics

b)

Knowledge gained through study or research

c)

Organized interpretation of facts

d)

Perception of knowledge

3.

Which type of data is provided in numerical form?

a)

Quantitative data

b)

Qualitative data

c)

Both quantitative and qualitative data

d)

None of the above

4.
What happens to data when it is processed?
a)
It loses its meaning.
b)
It becomes more unorganized.
c)
It is transformed into information.
d)
It is discarded.
5.
What does it mean when we say that data is independent of information?
a)
Information relies on data for its meaning.
b)
Data can exist without any context.
c)
Data is always more useful than information.
d)
Information can be created without data.
6.
Which of the following statements best describes the nature of data?
a)
Data is always organized and meaningful.
b)
Data is a collection of raw facts that lack meaning until processed.
c)
Data is synonymous with information.
d)
Data is only numerical and cannot include text.
7.

Grades: 70%, 90%, 85%

a)

Data

b)

Information

8.

pink

Black

Blue

Green

Yellow

a)

Data

b)

Information

9.

My favorite colour is pink

a)

Data

b)

Information

10.
What's your favorite subject in school?
a)
Categorical
b)
Quantitative
11.
Where do you plan on attending college?
a)
Categorical
b)
Quantitative
12.
What is your favorite type of food?
a)
Categorical
b)
Quantitative
13.
How many states have you visited in your lifetime?
a)
Categorical
b)
Quantitative
14.

What is the primary goal of data analytics?

a)

To collect data

b)

To store data

c)

To analyze data

d)

To delete data

15.

Which statistical measure is used to describe the central tendency of a dataset?

a)

Mean

b)

Median

c)

Mode

d)

Range

16.

What is the process of examining the relationship between two or more variables called?

a)

Data modeling

b)

Data correlation

c)

Data manipulation

d)

Data inference

17.

Which of the following is NOT a key step in the data analytics process?

a)

Data collection

b)

Data visualization

c)

Data storage

d)

Data interpretation

18.

It has no logical order. It is only a matter of distinguishing by name. Numbers used do not denote quantity.

a)

nominal

b)

ordinal

c)

interval

d)

ratio

19.

The difference in values is not constant. It provides a “rank” in data.

a)

nominal

b)

ordinal

c)

interval

d)

ratio

20.

There is an equal distance between each data. It has standardized differences between values. It does not have a natural zero.

a)

nominal

b)

ordinal

c)

interval

d)

ratio

21.

The data is continuous, ordered, has standardized differences between values and it has a natural zero.

a)

nominal

b)

ordinal

c)

interval

d)

ratio

22.

Which of the following shows interval data?

a)

age

b)

height

c)

Grade ranking

d)

Likert Scale

23.

These are facts and statistics collected together for reference or analysis.

a)

information

b)

data

c)

unit

d)

idea

24.

Students measure the length of their shoes and record the data.

a)

Change over time

b)

Numerical

c)

Categorical

25.

What is the range of values for the Pearson correlation coefficient?

a)

-1 to 1

b)

0 to 1

c)

1 to 10

d)

-10 to 10

26.

What is the primary aim of a correlational study?

a)

To determine cause and effect

b)

To investigate the relationship between co-variables

c)

To test the effectiveness of an intervention

d)

To explore participants' subjective experiences

27.

Which of the following is an example of a positive correlation?

a)

The more you study, the lower your grades.

b)

The less exercise you do, the fitter you are.

c)

The taller a person is, the larger their shoe size.

d)

The more you eat, the fewer calories you consume.

28.

A correlation coefficient of -0.85 suggests:

a)

A weak positive correlation

b)

A strong positive correlation

c)

A strong negative correlation

d)

No correlation

29.

Which type of correlation does C show?

a)

Positive correlation

b)

Negative correlation

c)

No correlation

30.

Which type of correlation does A show?

a)

Positive correlation

b)

Negative correlation

c)

No correlation

31.

The number of smartphones sold and the number of food poisoning cases.

a)

Positive correlation

b)

Negative correlation

c)

No correlation

32.

The more track athletes practice, the less time it takes them to finish the race.

a)

Positive correlation

b)

Negative correlation

c)

No correlation

33.
The correlation coefficient, is always between ___ and ___.
a)
0 and 1
b)
-1 and 1 
c)
-1 and 0
d)
0 and 10
34.
A perfect negative correlation has a correlation coefficient of ____. 
a)
1
b)
-1
c)
0
d)
10
35.
Which of the following represents the STRONGEST correlation?
a)
-.03
b)
+.5
c)
+.03
d)
-.79
36.

Most often, EDA relies on _____.

a)

visual techniques

b)

assumptions

c)

fixed models

d)

testing for statistical significance

37.
6. Find the mean.
18, 2, 0, 0, 0
a)
4
b)
5
c)
10
d)
20
38.

Find the median from the list of numbers:

60, 58, 52, 48, 60, 67

a)

58

b)

59

c)

60

d)

118

39.
How would you describe the mean?
a)
difference
b)
average
c)
middle
d)
most repeated number
40.

Calculate the mean.

2, 9, 10, 6, 8

a)

8

b)

4

c)

7

d)

22

41.
Find the median:
3, 5, 7, 4, 3, 1
a)
3 and 4
b)
There isn't one
c)
3.5
d)
3
42.

How do you insert COMMENTS in Python code?

a)

//This is a comment

b)

/*This is a comment*/

c)

#This is a comment

43.

What Python command lets the user enter an answer to a question?

a)

write()

b)

insert()

c)

print()

d)

input()

44.

x = 5

y = 6

print(x*y)

a)

11

b)

x*y

c)

30

d)

56

45.

Which of the following is a command to have a message appear on the screen?

a)

print

b)

write

c)

msg

d)

input

46.
What will the output be from the following code?
print(Hello world!)
a)
Hello world!
b)
SyntaxError
c)
Hello world
d)
print(Hello world!)
47.

What is the result of the following operation?

print(1 + 4*3)

a)

11

b)

12

c)

13

d)

15

48.

What is the value(?) if theoutput is 12

x = 5

y = ?

print (x+y)

a)

"7"

b)

=7

c)

7

d)

/7

49.

What type of Machine Learning Algorithm is suitable for predicting the continuous dependent variable?

a)

Logistic Regression

b)

Linear Regression

c)

Decision Tree Classifier

d)

KNN Classifier

50.
What is a scatter plot?
a)
A graph that shows the relationship of two data sets.
b)
A graph drawn using rectangular bars to show how large each value is.
c)
A graph that shows information that is connected in some way.
d)
A graph that shows data changing over time.