Evolution Plus (Module 1)
Evolution Plus (Module 2)
New Biology Concepts (Module 3)
Applications of New Bio Concepts (Module 3)
Python Codes
100

These are the 3 domains of life.

What are Archaea, Bacteria, and Eukarya?

100

This type of natural selection favors individuals with traits at one extreme of a distribution.

What is directional selection?

100

This property of life relies on cell membranes

What is maintain/control internal conditions?
100

Targeting this bacterial mechanism, which allows bacteria to pump out antibiotics, can help overcome resistance by preventing the drug from being expelled before it can act.

What is an efflux pump?

100

This keyword is used to exit a function and send a value back to the place where the function was called.

What is return (AKA GAME OVER)?

200

When a bacterial cell receives a new resistance gene from the environment.

What is horizontal gene transfer (aka transformation)

200

In diploid organisms, this process produces genetically unique haploid gametes through random sorting and crossover.

What is meiosis?

200

Type of bond between 2 atoms with electronegativity < 0.4

What is a nonpolar covalent bond?

200

These types of molecules will have the best permeability across a cell membrane.

What are small nonpolar molecules?

200

#This is a type of...

for i in range(3):

    for j in range(2):

        # What is happening here?

        print(i, j)

What is a nested for loop?

300

This type of mutation shifts the codon reading frame and changes the protein.

What is a frameshift mutation?

300

These two DNA repair mechanisms affect whether a gene drive succeeds in spreading: one is precise, the other is error-prone.

What are homologous directed repair (HDR) and non-homologous end joining (NHEJ)?

300

This type of electrostatic interaction occurs between nonpolar molecules.

What is van der Waals (London dispersion force)?

300

Movement across a cell membrane against a concentration gradient can occur via this mechanism.

What is active transport (via a transmembrane protein, pump)?

300

In this Python operation, you access specific elements in a list or string using a number, where the first element is indexed as 0.

my_list = [10, 20, 30]

# How do you access the second element?

What is indexing (i.e., my_list[1])?

400
Lab Experiment 1: A biological explanation for no PCR amplification of TetM even though your plates should you have tetracycline-resistant bacteria.
What is tet-resistance via different antibiotic resistance mechanisms?
400

Potential offspring resulting from a population of WW, DD, and WR.

What are WW, DD, WR, RR and DR? :D

400

A cell membrane might need more of these fatty acids when it is super hot.

What are saturated fatty acids?

400

These types of antibiotic resistance mechanisms are more energetically costly.

What are creating/maintaining new or more proteins?

400

dict1 = {"Alice": 25, "Bob": 30, "Charlie": 35}

dict2 = {"Alice": 26, "Bob": 31, "Dave": 40}

shared_values = []          

for key in dict1:             

    if key in dict2:             

                                         shared_values[key] = (dict1[key], dict2[key])

print(shared_values)       

#what is the output?


What is: ['Alice': (25, 26), 'Bob': (30, 31)]?

M
e
n
u