"); 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(""); 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) != "/") 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: 
 

Viruses, Bacteria, Protists, and Fungi



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

 1. 

What do fungi have in common with animals?
a.
They are autotrophs.
b.
They are heterotrophs.
c.
They have cell walls.
d.
They use spores to reproduce.
 

 2. 

What type of reproduction produces fungi that are different from either parent?
a.
budding
b.
asexual reproduction
c.
sexual reproduction
d.
dividing
 

 3. 

A fungus–plant root association is an example of
a.
an independent relationship.
b.
symbiotic mutualism.
c.
a decomposing relationship.
d.
disease fighting.
 

 4. 

Like animals, animal-like protists are
a.
autotrophs.
b.
heterotrophs.
c.
unicellular.
d.
prokaryotes.
 

 5. 

Where would fungi NOT likely thrive?
a.
forest floor
b.
wet bathroom tiles
c.
damp tree bark
d.
desert
 

 6. 

Which structures allow sarcodines such as amoebas to move?
a.
cilia
b.
contractile vacuoles
c.
flagella
d.
pseudopods
 

 7. 

What characteristic do all algae share?
a.
They are autotrophs.
b.
They are unicellular.
c.
They are multicellular.
d.
They live in colonies.
 

 8. 

Which of the following is an example of symbiotic mutualism?
a.
two paramecia exchanging genetic material
b.
the zooflagellate Giardia reproducing in a human
c.
the sporozoan Plasmodium feeding on a human cell
d.
a zooflagellate digesting food in a termite’s intestine
 

 9. 

Fungi that decompose dead organisms
a.
can cause serious disease in plants.
b.
live in symbiosis with other organisms.
c.
return important nutrients to the soil.
d.
are often called pioneer organisms.
 

 10. 

What a multicellular fungus looks like depends on how
a.
it obtains food.
b.
it reproduces.
c.
its gills are arranged.
d.
its hyphae are arranged.
 

 11. 

What bacteria-killing fungus did Fleming isolate in his 1928 experiment?
a.
Rhizopus
b.
corn smut
c.
wheat rust
d.
Penicillium
 

 12. 

What animal-like characteristic do euglenoids have?
a.
They have a flagellum.
b.
They can sometimes be heterotrophs.
c.
They have light-sensitive pigments.
d.
They are autotrophs.
 

 13. 

Why are viruses like parasites?
a.
They harm the cells they enter.
b.
They multiply.
c.
They use their own energy to develop.
d.
They make their own food.
 

 14. 

A virus’s proteins are important because they
a.
contain genetic material.
b.
make new virus particles.
c.
provide energy for the virus.
d.
help the virus attach to its host.
 

 15. 

Which shape describes some bacterial cells?
a.
cube-shaped
b.
bullet-shaped
c.
spiral
d.
robotlike
 

 16. 

Which of the following is found in the cytoplasm of bacterial cells?
a.
cell membrane
b.
nucleus
c.
genetic material
d.
flagella
 

 17. 

What process results in genetically different bacteria?
a.
binary fission
b.
respiration
c.
conjugation
d.
asexual reproduction
 

 18. 

Endospores form during
a.
binary fission.
b.
sunlight hours.
c.
respiration.
d.
harsh environmental conditions.
 

 19. 

What important role do bacteria called decomposers play?
a.
They return basic chemicals to the environment.
b.
They slow down food spoilage.
c.
They kill harmful bacteria.
d.
They produce vitamins.
 

 20. 

Which of the following is NOT a role of bacteria that live in human bodies?
a.
digesting food
b.
competing for space with disease-causing bacteria
c.
making vitamins
d.
fixing nitrogen
 

 21. 

The best treatment for most viral infections is
a.
an over-the-counter medication.
b.
a vaccine.
c.
an antibiotic.
d.
bed rest.
 

 22. 

How does a vaccine work?
a.
It activates the body’s natural defenses.
b.
It weakens the cell walls of bacteria, causing the cells to burst.
c.
It treats the symptoms of an infection.
d.
It attacks antibiotic-resistant bacteria.
 

 23. 

Binary fission is the bacterial process of
a.
asexual reproduction.
b.
obtaining food.
c.
producing energy.
d.
forming endospores.
 

 24. 

Viruses are considered to be nonliving because they
a.
cannot multiply.
b.
use energy to grow.
c.
are smaller than bacteria.
d.
do not show all the characteristics of life.
 

 25. 

The process of breaking down food to release its energy is called
a.
conjugation.
b.
respiration.
c.
binary fission.
d.
nutrition.
 

 26. 

Heterotrophic bacteria obtain food by
a.
capturing the sun’s energy.
b.
using the energy from chemicals in their environment.
c.
consuming autotrophs and other heterotrophs.
d.
helping autotrophs make food.
 

 27. 

What directly provides energy for a virus?
a.
food
b.
its host
c.
the sun
d.
a parasite
 

 28. 

A hidden virus
a.
cannot attach to a host cell.
b.
becomes part of the host cell’s genetic material.
c.
immediately takes over the cell’s functions.
d.
attaches to but does not enter the cell.
 

 29. 

Which of the following structures are always found in bacterial cells?
a.
nuclei
b.
ribosomes
c.
flagella
d.
coats
 

 30. 

Which of the following stimulates a person’s body to produce chemicals that destroy viruses or bacteria?
a.
antibiotic
b.
vaccine
c.
toxin
d.
endospore
 

Modified True/False
Indicate whether the sentence or statement is true or false.  If false, change the identified word or phrase to make the sentence or statement true.
 

 31. 

Animal-like protists are commonly called algae. _________________________

 

 32. 

A contractile vacuole is a structure that collects extra water and expels it from a protist. _________________________

 

 33. 

Bread rises due to the action of fungi called molds. _________________________

 

 34. 

The part of a fungus that produces spores is the fruiting body. _________________________

 

 35. 

A lichen consists of a(n) yeast and either an alga or an autotrophic bacterium. _________________________

 

 36. 

One reason that viruses are considered to be nonliving is that they are not made of protein. _________________________

 

 37. 

The inner core of a virus contains genetic material. _________________________

 

 38. 

When a virus invades a living cell, its outer coat takes over the cell’s functions. _________________________

 

 39. 

The cell membrane is the outermost structure of most bacterial cells. _________________________

 

 40. 

Binary fission occurs when a bacterium transfers some of its genetic material to another bacterium. _________________________

 

Completion
Complete each sentence or statement.
 

 41. 

All funguslike protists are able to ____________________ at some point in their lives.
 

 

 42. 

One of the characteristics of fungi is that they use ____________________ to reproduce.
 

 

 43. 

The antibiotic ____________________ resulted from the work of Alexander Fleming, who noticed that bacteria did not grow near a spot of mold in a petri dish.
 

 

 44. 


Fungi produce lightweight spores that are surrounded by a(n) _________________________.
 

 

 45. 

Yeast cells undergo a form of asexual reproduction called ____________________.
 

 

 46. 

Slime molds are one type of ____________________ protist.
 

 

 47. 

A virus’s _________________________ contains the instructions for making new viruses.
 

 

 48. 

The shape of the ____________________ on a virus’s coat allows the virus to attach to certain cells.
 

 

 49. 

A virus that begins to multiply immediately after it enters a cell is called a(n) ____________________ virus.
 

 

 50. 

Autotrophic bacteria either use the sun’s energy to make food or break down ____________________ in their environment.
 

 

 51. 

Some bacteria move by using a long, whiplike structure called a(n) ____________________.
 

 

 52. 

Bacteria are called ____________________ because their genetic material is not contained in nuclei.
 

 

 53. 

Bacterial cells contain structures called ____________________, which are chemical factories where proteins are produced.
 

 

 54. 

Some bacteria are called ____________________ because they break down large chemicals in dead organisms into small chemicals.
 

 

 55. 

Bacteria in swellings on the roots of peanut plants convert ____________________ gas from the air into compounds that the plants need to grow.
 

 

 56. 

When bacteria reproduce by ____________________, one cell divides to form two identical cells.
 

 

 57. 

A(n) ____________________ is a substance that stimulates the body to produce chemicals that destroy viruses or bacteria.
 

 

 58. 

The ability to ____________________ is the only characteristic that viruses share with living organisms.
 

 

 59. 

Like all organisms, bacteria need a constant supply of ____________________ to carry out their life functions.
 

 

 60. 

Many over-the-counter ____________________ can help relieve symptoms of a viral infection.
 

 

Short Answer
 
 
Use the diagram to answer each question.

vbpf_files/i0650000.jpg
 

 61. 

What kingdom does the organism in the diagram belong to? What is the common name of this organism?
 

 62. 

Describe how the cells of the organism in the diagram are arranged.
 

 63. 

Identify the structures labeled A in the diagram, and explain how they are used in feeding.
 

 64. 

What function do spores serve, and how do they move from place to place?
 

 65. 

List two ways that the organism in the diagram can be helpful to humans.
 

 66. 

List characteristics shared by organisms in the same kingdom as the organism shown.
 
 
Use the diagram to answer each question.

vbpf_files/i0720000.jpg
 

 67. 

Arrange the steps shown in the diagram in their proper sequence.
 

 68. 

Describe what is happening in part A of the diagram.
 

 69. 

Describe what is happening in part B of the diagram.
 

 70. 

Identify the structures inside the bacterium in part C of the diagram.
 

 71. 

Does the diagram show the multiplication of an active virus or a hidden virus? Explain.
 

 72. 

How does the diagram show that viruses multiply differently than organisms do?
 

Essay
 

 73. 

Describe how a mold growing on an orange obtains its food.
 

 74. 

Distinguish between asexual and sexual reproduction in fungi.
 

 75. 

Describe the three types of funguslike protists.
 

 76. 

A space probe finds no signs of life on another planet. Is it likely that there are viruses on that planet? Explain your reasoning.
 

 77. 

Describe the basic structures of viruses and explain their roles.
 

 78. 

How do bacterial cells differ from the cells of eukaryotes?
 

 79. 

Why are decomposing bacteria and nitrogen-converting bacteria important to farmers?
 

 80. 

What is an endospore and what is its role in a bacterium?
 



 
Check Your Work     Reset Help