What is the smallest structural and functional unit of an organism
What is the cell?
What is a variable?
What is a piece of data that can change?
What is the ggplot package for?
What is a quantitative variable?
A variable that can be measured or counted and has numerical values
'c' is an example of this primitive data type
What is char?
What does a prokaryotic cell lack compared to a eukaryotic cell?
What are organelles?
What does input do?
It allows users to enter data
What does the library() function do?
It loads packages
What is a null hypothesis
The hypothesis that there is no significant difference between specified populations
The output of:
if (5 * 7 < 4 * 9) return true; else return false;
What is true?
Where is DNA stored in a eukaryotic cell
what data type is 3.95?
What is Float?
What does the %/% operator do?
What is Integer division?
What is a negative control?
An experimental group where you expect no change to occur.
The purpose of the modulus operator (%).
What is the remainder of a division of two numbers?
What is the process of DNA amplification called?
What is PCR (polymerase chain reaction)?
What would the output of this code be if the user entered the value 70?
if grade >= 80:
print("Distinction")
elif grade >=70:
print("Merit")
elif grade >= 60:
print("Pass")
Merit
What does the pipe operator look like in R?
%>%
What does a Z score show?
How many standard deviations a data point is away from the mean of its dataset
This operator compares two things in Java.
What is ==?
What section of DNA is commonly sequenced to identify organisms in a sample
A) 16s region
B) TP53 region
C) ASPM region
D) BRCA1 region
A) 16s rRNA region
What effect does the # character have?
Tells Python to ignore the rest of the line.
What is the dplyr package used for?
Data manipulation
What does it mean to have a confidence interval of 95%?
If you were to repeat the sampling process many times, you would expect 95% of the intervals to contain the true population parameter
Create the beginning of a for loop that starts at 10 and goes down to (and includes) 0.
for (int i = 10; i >= 0; i--) { ... }