"); document.writeln("Name: " + studentName + "
"); document.write("Score: " + numCorrect + " / " + numPossible + " (" + scorePercent + "%)"); if (numSubjective > 0) { document.write("     [" + numSubjective + " subjective "); if (numSubjective == 1) document.write("question"); else document.write("questions"); document.write(" not graded]"); } document.writeln("

"); document.writeln("
" + titleString + "

"); document.writeln(""); currentInstruction = 0; currentNarrative = 0; for (i=0; i < numQuestions; ++i) { if (currentInstruction < numInstructions) { if (instructionIndex[currentInstruction] == i) { document.writeln(""); ++currentInstruction; } } if (currentNarrative < numNarratives) { if (narrativeIndex[currentNarrative] == i) { document.writeln(""); ++currentNarrative; } } document.writeln(""); document.writeln(""); document.writeln(""); document.writeln(""); } document.writeln("

"); document.writeln(instructionText[currentInstruction]); document.writeln("
 
"); document.writeln("
"); document.writeln(narrativeText[currentNarrative]); document.writeln("
 
"); document.writeln("

" + prefixText[i] + "

 " + numberText[i] + " 

" + questionText[i]); document.writeln("

"); document.writeln(""); if (listMap.charAt(i) != "1") { document.writeln(""); document.writeln(""); } document.writeln(""); document.writeln(""); if (showNotes) { document.writeln(""); document.writeln(""); } if (showRef) { document.writeln(""); document.writeln(""); } document.writeln("

RESPONSE: 

" + responseText[i] + "

ANSWER: 

" + answerText[i] + "

NOTES: 

" + notesText[i] + "

REF: 

" + refText[i] + "

"); document.writeln("
 
"); document.writeln("
"); document.writeln(""); document.writeln(""); document.write(""); document.writeln("
 
"); document.writeln("Retake Test"); document.write(""); document.writeln("Help"); document.writeln("
"); document.writeln(""); document.writeln("
Hosted by www.Geocities.ws

"); document.close(); return(false); } function GetResponse(answerIndex, answer) { var listIndex; var responseText; if (listMap.charAt(answerIndex) == "1") { listIndex = answer.selectedIndex; responseText = answer.options[listIndex].value; } else responseText = StripSpaces(answer.value); return(responseText); } function ScoreAnswer(answerIndex, responseText) { var listIndex; var answerText; answerText = ansMap[answerIndex]; if (qtypeMap.charAt(answerIndex) == "5") return(NumericCompare(responseText, answerText)); else if (qtypeMap.charAt(answerIndex) == "6") return(MultiCompare(responseText, answerText)); else if (responseText.toUpperCase() == answerText.toUpperCase()) return(true); else return(false); } function BuildPrefixText(answerIndex, responseText, isCorrect) { var text; var listIndex; text = "
"
		if (isCorrect)
			text += ""
		else
			text += ""

		if (listMap.charAt(answerIndex) == "1") {
			if (responseText.length == 0)
				responseText = " ";
			text += " " + responseText + " ";
		}

		text += "
" return(text); } function StripSpaces(s) { var len; var i; len = s.length; for (i=len - 1; i >= 0 && s.charAt(i) == " "; --i) len = i; if (len == 0) s = ""; else if (len != s.length) s = s.substring(0, len); return(s); } function TranslateHtmlString(text) { var newText; var replaceString; var position; var length; var breakPos; var skipExtra; var i; newText = ""; position = 0; length = text.length; while (position < length) { skipExtra = 0; breakPos = -1; for (i=position; i < length && breakPos < 0; ++i) { switch(text.charAt(i)) { case '>': replaceString = ">"; breakPos = i; break; case '<': replaceString = "<"; breakPos = i; break; case '&': replaceString = "&"; breakPos = i; break; case '\r': if ((i + 1) < length && text.charAt(i + 1) == '\n') skipExtra = 1; replaceString = "
"; breakPos = i; break; case '\n': replaceString = "
"; breakPos = i; break; case ' ': if ((i + 1 < length) && text.charAt(i + 1) == ' ') { replaceString = " "; breakPos = i; } break; } } if (breakPos < 0) { newText += text.substring(position, length); position = length; } else { if (breakPos > position) newText += text.substring(position, breakPos); newText += replaceString; position = breakPos + 1 + skipExtra; } } return(newText); } function FixMCNotes(notesText, studentText) { var displayText; var searchText; var upperNotes; var charCode; var startIndex; var endIndex; displayText = ""; if (notesText.length > 0) { if (studentText.length > 0) { upperNotes = notesText.toUpperCase(); studentText = studentText.toUpperCase(); charCode = studentText.charCodeAt(0); searchText = "/" + String.fromCharCode(charCode) + "/"; startIndex = upperNotes.indexOf(searchText); if (startIndex >= 0) { startIndex += searchText.length; searchText = "/" + String.fromCharCode(charCode + 1) + "/"; endIndex = upperNotes.indexOf(searchText, startIndex); if (endIndex < startIndex) endIndex = notesText.length; displayText = notesText.substring(startIndex, endIndex); } } if (displayText.length == 0 && notesText.charAt(0) != "http://www.geocities.com/") displayText = notesText; } return(displayText); } function NumericCompare(s1, s2) { var s1Sign; var s2Sign; var tempString; var decimalCount; var decimalPos; var numToDelete; var len; var ch; var i; s1.toUpperCase(); s2.toUpperCase(); if (s1 == s2) return(true); else { s1Sign = 1; s2Sign = 1; tempString = ""; for (i=0; i < s1.length; ++i) { ch = s1.charAt(i); if (ch == "-" && tempString.length == 0) s1Sign = -1; else if ((ch >= "0" && ch <= "9") || ch == ".") tempString += ch; } s1 = tempString; decimalCount = 0; decimalPos = -1; for (i=0; i < s1.length; ++i) { if (s1.charAt(i) == '.') { ++decimalCount; if (decimalPos < 0) decimalPos = i; } } if (decimalCount == 1 && decimalPos >= 0) { len = s1.length; for (i=len - 1; i >= decimalPos; --i) { if (i == decimalPos || s1.charAt(i) == '0') len = i; else break; } if (len < s1.length) s1 = s1.substring(0, len); if (s1.length == 0) s1 = "0"; } numToDelete = 0; for (i=0; i < s1.length; ++i) { if (s1.charAt(i) == "0") ++numToDelete; else break; } if (numToDelete > 0) { if (numToDelete == s1.length) --numToDelete; if (numToDelete > 0) s1 = s1.substring(numToDelete); } ///////////////////////////////////////////// tempString = ""; for (i=0; i < s2.length; ++i) { ch = s2.charAt(i); if (ch == "-" && tempString.length == 0) s2Sign = -1; else if ((ch >= "0" && ch <= "9") || ch == ".") tempString += ch; } s2 = tempString; decimalCount = 0; decimalPos = -1; for (i=0; i < s2.length; ++i) { if (s2.charAt(i) == '.') { ++decimalCount; if (decimalPos < 0) decimalPos = i; } } if (decimalCount == 1 && decimalPos >= 0) { len = s2.length; for (i=len - 1; i >= decimalPos; --i) { if (i == decimalPos || s2.charAt(i) == '0') len = i; else break; } if (len < s2.length) s2 = s2.substring(0, len); if (s2.length == 0) s2 = "0"; } numToDelete = 0; for (i=0; i < s2.length; ++i) { if (s2.charAt(i) == "0") ++numToDelete; else break; } if (numToDelete > 0) { if (numToDelete == s2.length) --numToDelete; if (numToDelete > 0) s2 = s2.substring(numToDelete); } if (s1Sign == s2Sign && s1 == s2) return(true); } return(false); } function MultiCompare(responseText, answerText) { var startIndex; var endIndex; var partialText; responseText = responseText.toUpperCase(); answerText = answerText.toUpperCase(); startIndex = 0; do { endIndex = answerText.indexOf("\r", startIndex); if (endIndex < 0) partialText = answerText.substring(startIndex); else partialText = answerText.substring(startIndex, endIndex); if (responseText == partialText) return(true); startIndex = endIndex + 1; } while (endIndex > 0); return(false); } function FixMTF(f) { var text; var letter; var theList; var listIndex; var number; var i; for (i=0; i < f.length; ++i) { if (f.elements[i].name.indexOf("MTF:") == 0) { number = parseInt(f.elements[i].name.substring(4), 10); theList = f["MTF-" + number + "-1"]; if (theList) { listIndex = theList.selectedIndex; letter = theList.options[listIndex].value; } else letter = ""; text = StripSpaces(f["MTF-" + number + "-2"].value); if (text == "") f.elements[i].value = letter; else f.elements[i].value = letter + "," + text; } } } function AllowReset() { return(window.confirm("Do you want to clear all of your answers?")); } // -->
 
Name: 
 

chapter8practice



Multiple Choice
Identify the letter of the choice that best completes the statement or answers the question.
 

 1. 

What is the term for metabolic pathways that release stored energy by breaking down complex molecules?
a.
anabolic pathways
b.
catabolic pathways
c.
fermentation pathways
d.
thermodynamic pathways
e.
bioenergetic pathways
 

 2. 

What is the term used for the metabolic pathway in which glucose (C6H12O6) is degraded to carbon dioxide (CO2) and water?
a.
cellular respiration
b.
glycolysis
c.
fermentation
d.
citric acid cycle
e.
oxidative phosphorylation
 

 3. 

When a glucose molecule loses a hydrogen atom (not a hydrogen ion) as the result of an oxidation-reduction reaction, the molecule becomes
a.
dehydrogenated.
b.
hydrogenated.
c.
oxidized.
d.
reduced.
e.
an oxidizing agent.
 

 4. 

When a molecule of NAD+ (nicotinamide adenine dinucleotide) gains a hydrogen atom (not a hydrogen ion) the molecule becomes
a.
hydrogenated.
b.
oxidized.
c.
reduced.
d.
redoxed.
e.
a reducing agent.
 

 5. 

Which of the following statements about NAD+ is false?
a.
NAD+ is reduced to NADH during both glycolysis and the citric acid cycle.
b.
NAD+ has more chemical energy than NADH.
c.
NAD+ is reduced by the action of dehydrogenases.
d.
NAD+ can receive electrons for use in oxidative phosphorylation.
e.
In the absence of NAD+, glycolysis cannot function.
 

 6. 

Where does glycolysis takes place?
a.
mitochondrial matrix
b.
mitochondrial outer membrane
c.
mitochondrial inner membrane
d.
mitochondrial intermembrane space
e.
cytosol
 

 7. 

The ATP made during glycolysis is generated by
a.
substrate-level phosphorylation.
b.
electron transport.
c.
photophosphorylation.
d.
chemiosmosis.
e.
oxidation of NADH to NAD+.
 

 8. 

The oxygen consumed during cellular respiration is involved directly in which process or event?
a.
glycolysis
b.
accepting electrons at the end of the electron transport chain
c.
the citric acid cycle
d.
the oxidation of pyruvate to acetyl CoA
e.
the phosphorylation of ADP to form ATP
 

 9. 

The free energy for the oxidation of glucose to CO2 and water is -686 kcal/mole and the free energy for the reduction of NAD+ to NADH is +53 kcal/mole. Why are only two molecules of NADH formed during glycolysis when it appears that as many as a dozen could be formed?
a.
Most of the free energy available from the oxidation of glucose is used in the production of ATP in glycolysis.
b.
Glycolysis is a very inefficient reaction, with much of the energy of glucose released as heat.
c.
Most of the free energy available from the oxidation of glucose remains in pyruvate, one of the products of glycolysis.
d.
There is no CO2 or water produced as products of glycolysis.
e.
Glycolysis consists of many enzymatic reactions, each of which extracts some energy from the glucose molecule.
 

 10. 

In the presence of oxygen, the three-carbon compound pyruvate can be catabolized in the citric acid cycle. First, however, the pyruvate 1. loses a carbon, which is given off as a molecule of CO2, 2. is oxidized to form a two-carbon compound called acetate, and 3. is bonded to coenzyme A. These three steps result in the formation of
a.
acetyl CoA, O2, and ATP.
b.
acetyl CoA, FADH2, and CO2.
c.
acetyl CoA, FAD, H2, and CO2.
d.
acetyl CoA, NADH, H+, and CO2.
e.
acetyl CoA, NAD+, ATP, and CO2.
 

 11. 

During cellular respiration, acetyl CoA accumulates in which location?
a.
cytosol
b.
mitochondrial outer membrane
c.
mitochondrial inner membrane
d.
mitochondrial intermembrane space
e.
mitochondrial matrix
 
 
Refer to the figure below, showing the citric acid cycle, as a guide to answer the following questions.

chap8prac_files/i0130000.jpg
 

 12. 

Starting with one molecule of isocitrate and ending with fumarate, what is the maximum number of ATP molecules that could be made through substrate-level phosphorylation?
a.
1
b.
2
c.
11
d.
12
e.
24
 

 13. 

Carbon dioxide (CO2) is released during which of the following stages of cellular respiration?
a.
glycolysis and the oxidation of pyruvate to acetyl CoA
b.
oxidation of pyruvate to acetyl CoA and the citric acid cycle
c.
the citric acid cycle and oxidative phosphorylation
d.
oxidative phosphorylation and fermentation
e.
fermentation and glycolysis
 

 14. 

A young relative of yours has never had much energy. He goes to a doctor for help and is sent to the hospital for some tests. There they discover his mitochondria can use only fatty acids and amino acids for respiration, and his cells produce more lactate than normal. Of the following, which is the best explanation of his condition?
a.
His mitochondria lack the transport protein that moves pyruvate across the outer mitochondrial membrane.
b.
His cells cannot move NADH from glycolysis into the mitochondria.
c.
His cells contain something that inhibits oxygen use in his mitochondria.
d.
His cells lack the enzyme in glycolysis that forms pyruvate.
e.
His cells have a defective electron transport chain, so glucose goes to lactate instead of to acetyl CoA.
 

 15. 

Cellular respiration harvests the most chemical energy from which of the following?
a.
substrate-level phosphorylation
b.
chemiosmotic phosphorylation
c.
converting oxygen to ATP
d.
transferring electrons from organic molecules to pyruvate
e.
generating carbon dioxide and oxygen in the electron transport chain
 

 16. 

During aerobic respiration, electrons travel downhill in which sequence?
a.
food chap8prac_files/i0180000.jpg citric acid cycle chap8prac_files/i0180001.jpg ATP chap8prac_files/i0180002.jpg NAD+
b.
food chap8prac_files/i0180003.jpg NADH chap8prac_files/i0180004.jpg electron transport chain chap8prac_files/i0180005.jpg oxygen
c.
glucose chap8prac_files/i0180006.jpg pyruvate chap8prac_files/i0180007.jpg ATP chap8prac_files/i0180008.jpg oxygen
d.
glucose chap8prac_files/i0180009.jpg ATP chap8prac_files/i0180010.jpg electron transport chain chap8prac_files/i0180011.jpg NADH
e.
food chap8prac_files/i0180012.jpg glycolysis chap8prac_files/i0180013.jpg citric acid cycle chap8prac_files/i0180014.jpg NADH chap8prac_files/i0180015.jpg ATP
 

 17. 

Where do the catabolic products of fatty acid breakdown enter into the citric acid cycle?
a.
pyruvate
b.
malate or fumarate
c.
acetyl CoA
d.
chap8prac_files/i0190000.jpg-ketoglutarate
e.
succinyl CoA
 

 18. 

Where are the proteins of the electron transport chain located?
a.
cytosol
b.
mitochondrial outer membrane
c.
mitochondrial inner membrane
d.
mitochondrial intermembrane space
e.
mitochondrial matrix
 

 19. 

The primary role of oxygen in cellular respiration is to
a.
yield energy in the form of ATP as it is passed down the respiratory chain.
b.
act as an acceptor for electrons and hydrogen, forming water.
c.
combine with carbon, forming CO2.
d.
combine with lactate, forming pyruvate.
e.
catalyze the reactions of glycolysis.
 

 20. 

During oxidative phosphorylation, H2O is formed. Where does the oxygen for the synthesis of the water come from?
a.
carbon dioxide (CO2)
b.
glucose (C6H12O6)
c.
molecular oxygen (O2)
d.
pyruvate (C3H3O3)
e.
lactate (C3H5O3–-)
 

 21. 

Energy released by the electron transport chain is used to pump H+ ions into which location?
a.
cytosol
b.
mitochondrial outer membrane
c.
mitochondrial inner membrane
d.
mitochondrial intermembrane space
e.
mitochondrial matrix
 

 22. 

During aerobic cellular respiration, a proton gradient in mitochondria is generated by ____ and used primarily for ____.
a.
the electron transport chain; ATP synthesis
b.
the electron transport chain; substrate-level phosphorylation
c.
glycolysis; production of H2O
d.
fermentation; NAD+ reduction
e.
diffusion of protons; ATP synthesis
 

 23. 

The direct energy source that drives ATP synthesis during respiratory oxidative phosphorylation is
a.
oxidation of glucose to CO2 and water.
b.
the thermodynamically favorable flow of electrons from NADH to the mitochondrial electron transport carriers.
c.
the final transfer of electrons to oxygen.
d.
the difference in H+ concentrations on opposite sides of the inner mitochondrial membrane.
e.
the thermodynamically favorable transfer of phosphate from glycolysis and the citric acid cycle intermediate molecules of ADP.
 

 24. 

Which process could be compared to how rushing steam turns a water wheel?
a.
the citric acid cycle
b.
ATP synthase activity
c.
formation of NADH in glycolysis
d.
oxidative phosphorylation
e.
the electron transport system
 

 25. 

Each time a molecule of glucose (C6H12O6) is completely oxidized via aerobic respiration, how many oxygen molecules (O2). are required?
a.
1
b.
2
c.
6
d.
12
e.
38
 

 26. 

Approximately what percentage of the energy of glucose (C6H12O6) is transferred to storage in ATP as a result of the complete oxidation of glucose to CO2 and water in cellular respiration?
a.
2%
b.
4%
c.
10%
d.
25%
e.
40%
 

 27. 

Which metabolic pathway is common to both cellular respiration and fermentation?
a.
the oxidation of pyruvate to acetyl CoA
b.
the citric acid cycle
c.
oxidative phosphorylation
d.
glycolysis
e.
chemiosmosis
 

 28. 

Muscle cells in oxygen deprivation convert pyruvate to ____, and in this step gain____.
a.
lactate; ATP
b.
alcohol; CO2
c.
alcohol; ATP
d.
ATP; NADH2
e.
lactate; NAD+
 

 29. 

In alcohol fermentation, NAD+ is regenerated from NADH during the
a.
reduction of acetaldehyde to ethanol (ethyl alcohol).
b.
oxidation of pyruvate to acetyl CoA.
c.
reduction of pyruvate to form lactate.
d.
oxidation of NAD+ in the citric acid cycle.
e.
phosphorylation of ADP to form ATP.
 

 30. 

Why is glycolysis considered to be one of the first metabolic pathways to have evolved?
a.
It produces much less ATP than does oxidative phosphorylation.
b.
It is found in the cytosol, does not involve oxygen, and is present in most organisms.
c.
It is found in prokaryotic cells but not in eukaryotic cells.
d.
It relies on chemiosmosis which is a metabolic mechanism present only in the first cells-prokaryotic cells.
e.
It requires the presence of membrane-enclosed cell organelles found only in eukaryotic cells.
 



 
Check Your Work     Reset Help
Hosted by www.Geocities.ws

1