Biology
Python
R
Statistics
Java
100

What is the smallest structural and functional unit of an organism

What is the cell?

100

What is a variable? 


What is a piece of data that can change?

100

What is the ggplot package for?

It helps create plots and visualizations
100

What is a quantitative variable?

A variable that can be measured or counted and has numerical values

100

'c' is an example of this primitive data type


What is char?


200

What does a prokaryotic cell lack compared to a eukaryotic cell?

What are organelles?

200

What does input do? 

 It allows users to enter data

200

What does the library() function do?

It loads packages

200

What is a null hypothesis

The hypothesis that there is no significant difference between specified populations

200


The output of: 

if (5 * 7 < 4 * 9) return true; else return false;



What is true?


300

Where is DNA stored in a eukaryotic cell

What is the Nucleus?
300

what data type is 3.95? 


What is Float?

300

What does the %/% operator do?

What is Integer division?

300

What is a negative control?

An experimental group where you expect no change to occur.

300

The purpose of the modulus operator (%).


What is the remainder of a division of two numbers?


400

What is the process of DNA amplification called? 

What is PCR (polymerase chain reaction)?

400

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

400

What does the pipe operator look like in R?

%>%

400

What does a Z score show?

How many standard deviations a data point is away from the mean of its dataset

400

This operator compares two things in Java.

What is ==?


500

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

500

What effect does the # character have? 


Tells Python to ignore the rest of the line.

500

What is the dplyr package used for? 

Data manipulation

500

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 

500

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--) { ... }

M
e
n
u