In: Biology
Which of the following chemical groups is important in energy transfer?
|
-OH hydroxyl group |
||
|
-NH2 amino group |
||
|
-SH sulfhydryl group |
||
|
-OPO32- phosphate group |
In: Biology
Use the Heap class provided to implement a sort routine in a Main class where the user enters a series of values, each value is then pushed onto a heap, then the values are printed out in ascending order.
public class Heap {
public static final int SIZE = 1025;
public Heap() {
elt = new Element[SIZE];
lastLoc = 0;
}
public void push(String k, Object o) {
if (!fullCheck()) {
lastLoc++;
elt[lastLoc] = new Element(k,o);
int loc = lastLoc;
while (loc > 1 && elt[loc].key.compareTo(elt[loc/2].key) < 0) {
Element hold = elt[loc];
elt[loc] = elt[loc/2];
elt[loc/2] = hold;
loc = loc/2;
}
}
}
public void pop() {
if (!emptyCheck()) {
elt[1] = elt[lastLoc];
lastLoc--;
int loc = 1;
while (2*loc <= lastLoc) {
loc = 2*loc;
if (loc < lastLoc && elt[loc +1].key.compareTo(elt[loc].key) < 0) loc=loc+1;
if (elt[loc].key.compareTo(elt[loc/2].key) < 0) {
Element hold = elt[loc/2];
elt[loc/2] = elt[loc];
elt[loc] = hold;
}
}
}
}
public Object top() {
return elt[1].payload;
}
public Object topKey() {
return elt[1].key;
}
public boolean emptyCheck() {
return (lastLoc == 0);
}
public boolean fullCheck() {
return (lastLoc == SIZE-1);
}
private Element[] elt;
private int lastLoc;
}
public class Element {
public Element(String s) {
key = s;
payload = null;
}
public Element(String s, Object obj) {
key = s;
payload = obj;
}
public String key;
public Object payload;
}In: Biology
For the ribosomes on nuclear envelope, what would be the proteins made here do?
In: Biology
sanger sequencing, and how base identity (A,T,C,G) is detected using fluorescence. Can you explain what it means that the DNA is labeled with a fluorescent tag, and where that tag is located?
In: Biology
Kay is the nurse supervisor of a small clinic located on the campus of a Midwestern college. In a single week, she treated fifteen students (ages 19-24) with similar symptoms. They each appeared at the student clinic in various stages of the development of a red macular rash. It seemed to start on the face and spread to the trunk and extremities. Each complained of having had a severe cold, including sore throat, headache, and cough, for a few days previously.
After observing tiny red patches with white centers on the oral mucosa, next to the molars, Kay made her diagnosis. She warned each student that their infection was extremely contagious and placed them in isolation. She also warned them of the need for strict bed rest because of the dangerous complications of this infection. Chemotherapy was limited to acetaminophen for comfort. Kay checked each student’s immunization record and found it complete and up-to-date.
QUESTION 1
Which of these is likely to be Kay’s diagnosis?
|
Chickenpox |
||
|
Rubeola |
||
|
Rubella |
||
|
Scarlet Fever One of the infected students, Sara, shared a small apartment with two other students. However, they had left on a long weekend trip on Thursday and she did not develop rash until Saturday. These roommates would not "catch" the infection from Sara unless they returned to the apartment before the rash disappeared. True False |
In: Biology
A cis-acting mutation that leads to MINIMAL expression of the lac operon would most likely be in the CAP binding site. Is this true or false, and why? Thanks!
In: Biology
You are the Coroner. Identify and explain the MANNER of death in the following scenarios (adapted from Saferstein, 2018, Chapter). Why are you making that determination? In some cases, what more would you need to know about the scene or history?
A. Death due to a motor vehicle accident in which a person lost control of their vehicle in bad weather
B. Death due to a motor vehicle accident in which a person was killed when their car was stopped at a stop sign and they were struck by another vehicle which was street racing.
C. Death due to a contact head wound to the back of the head
D. Death due to carbon monoxide poisoning of an entire family asleep in their beds in different rooms in the house
E. Death due to carbon monoxide poisoning where the body is found in a car parked in a garage
F. Death of a person using fentanyl
G. Death of an elderly person from pneumonia after a fall.
H. Death of an elderly person from pneumonia after being mugged and thrown to the ground
I. Skeletonized remains found in the forest three years after being last seen alive
In: Biology
What role do KNOX proteins have in maintaining the apical meristem?
In: Biology
You are driving to the shops…
What information is being detected by you/your body? Provide one external and one internal example. For each, describe how the sensory information is being detected, integrated and processed in the CNS? (2 marks, 2 min)
Whilst you are driving a car, what is your body doing to meet its needs/your goals? What is your body doing? Provide one voluntary and one involuntary example. How is the response being generated; what effector pathways are involved? (2 marks, 2 min)
Now, tell me about the role of an example protein, expressed on an example cell in one of your examples. What is the protein/where is it expressed/what does it do (and why is this important/relevant)? (2 marks, 2 min)
Your protein is dysfunctional. Provide two reasons for why a protein may not be able to fulfil its functional role, and for each, indicate the permanence of this outcome. (2 marks, 2 min)
What are the consequences… build from micro to macro: cell/s - tissue/s - organ/s - system/s. Physiologically, what can you not do (and why is that a problem)? (2 marks, 2 min)
In: Biology
Weak interactions among amino acids that stabilize the tertiary structure of the protein include (list five):
In: Biology
In: Biology
A competing commercial effort to sequence the human genome was initiated by the company Celera in 1997. How was their approach different from the Human Genome Project?
In: Biology
11. Two hypothetical populations of rabbits live on a mountain, one at low elevation and the other at high elevation. Rabbits at the low elevation experience a mild climate and have short fur, whereas rabbits at the high elevation are exposed to cold conditions and have long fur. There are no geographic barriers separating the ranges of two populations.
An ecologist finds that in both the low and high elevation populations, there are a few rabbits that have intermediate fur length. She notes that the rabbits with intermediate fur length can successfully mate and produce offspring with rabbits that have short or long fur.
What is the most likely explanation for why some rabbits have intermediate fur length?
A) The rabbits with intermediate fur length are a seperate species.
B) The population at low elevation is experiencing genetic drift.
C) The rabbits with intermediate fur length live in a different area and are migrating through the two populations.
D) There is a gene flow between the low and high elevation populations.
In: Biology