wayground logo

Free Printable Worksheets

Font size

S
M
L
XL
Worksheets

EDA MidTerm

Total questions: 60

Worksheet time: 38mins

Name
Class
Date
1.
Find the Mean. 
a)
5.8
b)
5
c)
5.6
d)
6
2.
Find the mean:
28, 18, 19, 18, 17
a)
20
b)
18
c)
11
d)
19
3.
What is the median of this data set?
3 , 17 , 17 , 11 , 8 , 13 , 5 , 18
a)
11
b)
12
c)
13
d)
17
4.
Find the median:
5, 6, 3, 9, 0, 4, 1, 2, 7
a)
4
b)
4.1
c)
5
d)
4.5
5.
What is the minimum value?
a)
64
b)
58
c)
66
d)
61
6.
What is the maximum value?
a)
58
b)
66
c)
64
d)
60
7.

Find the mode of these numbers:

2, 3, 4, 5, 5, 5, 7,

a)

6

b)

5

c)

4

d)

3

8.
What is the correlation?
a)
Negative correlation
b)
No correlation
c)
Positive correlation
d)
All of the above
9.
If a scatterplot has no association then...
a)
...it has no ordered pairs
b)
...it has ordered pairs that have a negative pattern
c)
...its ordered pairs have no predictable pattern
d)
...if it makes a lion on a graph (roar!)
10.
What type of association does this graph have?
a)
positive 
b)
negative
c)
none
d)
all of the above
11.
What type of correlation (association)?
The outside temperature and the amount of layers you wear. 
a)
Positive correlation
b)
Negative correlation
c)
No correlation
d)
All of the above
12.
The number of siblings you have and your weight. 
a)
Positive correlation
b)
Negative correlation
c)
No correlation
d)
All of the above
13.
As x increases, y increases
a)
correlation coefficient
b)
causation
c)
positive correlation
d)
negative correlation
14.
Describe the correlation in the graph shown.
a)
Strong Negative
b)
Strong Positive
c)
Weak Negative
d)
Weak Positive
15.
What type of association does this scatter plot represent?
a)
positive linear association
b)
negative association
c)
no association
d)
nonlinear association
16.

What type of correlation does this graph have?

a)

positive

b)

negative

c)

none

d)

all of the above

17.
You are analyzing a scatter plot that has a negative correlation. What is true of the of the x and y values?
a)
As x increases, y decreases
b)
As x increases, y increases
c)
As x decreases, y decreases
18.
In which year did exactly 60 students have scholarships?
a)
2010
b)
2011
c)
2012
d)
2013
19.
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.
20.

There are 40 sheep on a farm.


The weight of the sheep is _____ data

a)

Qualitative

b)

Discrete

c)

Continuous

21.

The length of a football pitch is _____ data

a)

Discrete

b)

Continuous

22.
Choose the correct data type for:
'Measuring lengths of a football field.'
a)
Quantitative
b)
Categorical
c)
Discrete
d)
Continuous
23.
Choose the correct data type for:
The following TV shows: 'The Walking Dead, Game of Thrones, Dexter'.
a)
Quantitative
b)
Categorical
c)
Discrete
d)
Continuous
24.

What type of Data Display is this?

a)

Histogram

b)

Pie Chart

c)

Stem & Lead Plot

d)

Scatter Plot

25.

What type of Data Display is this?

a)

Line Plot

b)

Scatter Plot

c)

Bar Graph

d)

Pie Chart

26.

What type of Data Display is this?

a)

Line Graph

b)

Histogram

c)

Scatter Plot

d)

Bar Graph

27.

What type of Data Display is this?

a)

Bar Graph

b)

Pie Chart

c)

Stem & Leaf Plot

d)

Scatter Plot

28.
A perfect positive correlation has a correlation coefficient of ____. 
a)
1
b)
-1
c)
0
29.
A perfect negative correlation has a correlation coefficient of ____. 
a)
1
b)
-1
c)
0
30.
r=-0.89
a)
Strong positive 
b)
Weak positive 
c)
Strong negative 
d)
Weak negative 
31.

A correlation value (r) that has a strong, positive linear association would have a value close to

a)

1

b)

0

c)

-1

d)

Cannot be answered

32.

Which value represents the strongest negative correlation?

a)

-0.7

b)

-0.8

c)

-0.83

d)

-0.084

33.

Which one of the following is correct way of declaring and initializing a variable, x with value 5?

a)

int x

x=5

b)

int x=5

c)

x=5

d)

declare x=5

34.
Which of the following is a correctly-formatted comment?
a)
#Comment
b)
&Comment
c)
""Comment""
d)
!Comment
35.

x= 4.5

print int(x)

What will the program print?

a)

4

b)

5

c)

4.5

36.

What is the output of the following Python code?

print('Hello' + "world!")

a)

Helloworld!

b)

Hello world!

c)

'Hello' "world!"

d)

Error message

37.

What will the output be from the following Python code?

print(3+4)

a)

3+4

b)

7

c)

SyntaxError

d)

print(3+4)

38.

What is the data type of ["Sunday","Monday","Tuesday"]

a)

List

b)

String

c)

Numeric

d)

Tuple

39.

What will be the answer of print("50" + "50")

a)

100

b)

5050

c)

505

d)

2500

40.

Which of these pieces of code would return the name "Harry" from the following list?

nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]

a)

nameList()

b)

nameList[1]

c)

NameList(4)

d)

nameList["4"]

41.

nameList = ["John", "Harry", "Jesse", "John", "Marry", "Larry"]

The list will be slice and show Harry and Jesse only. Which piece of code below would do this?

a)

print(nameList[1:3])

b)

print(nameList[0:1])

c)

print(nameList[1:2])

d)

print(nameList["Harry":"Jesse"])

42.

variable.sort() will do what?

a)

Sort the list into alphabetical order

b)

Sort the list into reverse order

c)

Create a new list

d)

Error

43.

nameList = ["John", "Harry", "Jesse", "John", "Marry", "Larry"]

del nameList[3]

print(nameList)

What would be the output

a)

['John', 'Harry', 'Jesse', 'Marry', 'Larry']

b)

['John', 'Harry', 'Jesse', 'John', 'Larry']

c)

['John', 'Harry', 'John', 'Marry', 'Larry']

d)

Error

44.

What will be the output?

name = "Dave"

print ("name")

a)

Dave

b)

"Dave"

c)

name

d)

"name"

45.

Python is a

a)

text language

b)

database language

c)

programming language

46.

What is the data that has been collected only 1 variable

a)

  Bivariate data

b)

  Univariate data

c)

   Multivariate data

d)

Categorical data

47.

    What is the data that has been collected more than two variables, and each data point in one variable has a corresponding data point in the other value?

a)

Bivariate data

b)

   Univariate data

c)

Multivariate data

d)

Categorical data

48.

What is popular version of Jupyter Notebook within the Google suite of tools that allows user to write, run, and share Python executable code along with text, images, HTML, LaTeX, etc. stored in your google drive and shareable to peers and colleagues for editing, commenting, and viewing?

a)

Google Colab

b)

Jupyter Notebook

c)

R Programming

d)

XAMPP

49.

Which of the following would be an example of a string variable:

a)

ValidInput = False

b)

GuessCount = 100

c)

Name = "Bilbo"

d)

Pi = 3.14159265359

50.

name=input("What is your name? ")

print("Your name is " + name)

What will be displayed if the user types in "Bob"?

a)

Your name is name

b)

name

c)

Bob

d)

Your name is Bob

51.

What are numbers, pictures or words without context known as?

a)

Data

b)

Information

52.

Which of the following is correct?

a)

Information is processed Data

b)

Data is processed information

c)

Data is information

53.

What is this?

a)

Data

b)

Information

54.

Data or information:

1,2,3,4,5…

a)

Data

b)

Information

55.

$@#*

a)

Data

b)

Information

56.

I got 50% on my Mathemtics test

a)

Data

b)

Information

57.

There are seven days in a week

a)

Data

b)

Information

58.

What type of correlation does the graph show?

a)

Positive Correlation

b)

Negative Correlation

c)

No Correlation

59.

What type of correlation does the graph show?

a)

Positive Correlation

b)

Negative Correlation

c)

No Correlation

60.

What type of correlation does the graph show?

a)

Positive Correlation

b)

Negative Correlation

c)

No Correlation