WorksheetsEDA MidTerm
Total questions: 60
Worksheet time: 38mins
28, 18, 19, 18, 17
3 , 17 , 17 , 11 , 8 , 13 , 5 , 18
5, 6, 3, 9, 0, 4, 1, 2, 7
Find the mode of these numbers:
2, 3, 4, 5, 5, 5, 7,
6
5
4
3
The outside temperature and the amount of layers you wear.
What type of correlation does this graph have?
positive
negative
none
all of the above
There are 40 sheep on a farm.
The weight of the sheep is _____ data
Qualitative
Discrete
Continuous
The length of a football pitch is _____ data
Discrete
Continuous
'Measuring lengths of a football field.'
The following TV shows: 'The Walking Dead, Game of Thrones, Dexter'.
What type of Data Display is this?
Histogram
Pie Chart
Stem & Lead Plot
Scatter Plot
What type of Data Display is this?
Line Plot
Scatter Plot
Bar Graph
Pie Chart
What type of Data Display is this?
Line Graph
Histogram
Scatter Plot
Bar Graph
What type of Data Display is this?
Bar Graph
Pie Chart
Stem & Leaf Plot
Scatter Plot
A correlation value (r) that has a strong, positive linear association would have a value close to
1
0
-1
Cannot be answered
Which value represents the strongest negative correlation?
-0.7
-0.8
-0.83
-0.084
Which one of the following is correct way of declaring and initializing a variable, x with value 5?
int x
x=5
int x=5
x=5
declare x=5
x= 4.5
print int(x)
What will the program print?
4
5
4.5
What is the output of the following Python code?
print('Hello' + "world!")
Helloworld!
Hello world!
'Hello' "world!"
Error message
What will the output be from the following Python code?
print(3+4)
3+4
7
SyntaxError
print(3+4)
What is the data type of ["Sunday","Monday","Tuesday"]
List
String
Numeric
Tuple
What will be the answer of print("50" + "50")
100
5050
505
2500
Which of these pieces of code would return the name "Harry" from the following list?
nameList = ["John", "Harry", "Jesse", "John", "Harry", "Harry"]
nameList()
nameList[1]
NameList(4)
nameList["4"]
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?
print(nameList[1:3])
print(nameList[0:1])
print(nameList[1:2])
print(nameList["Harry":"Jesse"])
variable.sort() will do what?
Sort the list into alphabetical order
Sort the list into reverse order
Create a new list
Error
nameList = ["John", "Harry", "Jesse", "John", "Marry", "Larry"]
del nameList[3]
print(nameList)
What would be the output
['John', 'Harry', 'Jesse', 'Marry', 'Larry']
['John', 'Harry', 'Jesse', 'John', 'Larry']
['John', 'Harry', 'John', 'Marry', 'Larry']
Error
What will be the output?
name = "Dave"
print ("name")
Dave
"Dave"
name
"name"
Python is a
text language
database language
programming language
What is the data that has been collected only 1 variable
Bivariate data
Univariate data
Multivariate data
Categorical data
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?
Bivariate data
Univariate data
Multivariate data
Categorical data
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?
Google Colab
Jupyter Notebook
R Programming
XAMPP
Which of the following would be an example of a string variable:
ValidInput = False
GuessCount = 100
Name = "Bilbo"
Pi = 3.14159265359
name=input("What is your name? ")
print("Your name is " + name)
What will be displayed if the user types in "Bob"?
Your name is name
name
Bob
Your name is Bob
What are numbers, pictures or words without context known as?
Data
Information
Which of the following is correct?
Information is processed Data
Data is processed information
Data is information
What is this?
Data
Information
Data or information:
1,2,3,4,5…
Data
Information
$@#*
Data
Information
I got 50% on my Mathemtics test
Data
Information
There are seven days in a week
Data
Information
What type of correlation does the graph show?
Positive Correlation
Negative Correlation
No Correlation
What type of correlation does the graph show?
Positive Correlation
Negative Correlation
No Correlation
What type of correlation does the graph show?
Positive Correlation
Negative Correlation
No Correlation
