"); 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: 
 

Plants



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

 1. 

All plants are
a.
eukaryotes.
b.
unicellular.
c.
heterotrophs.
d.
prokaryotes.
 

 2. 

Vascular plants differ from nonvascular plants in
a.
how they make food.
b.
where they obtain materials.
c.
how they transport materials.
d.
how they reproduce.
 

 3. 

What parts of a fern grow underground?
a.
roots and fronds
b.
roots and stems
c.
stems and leaves
d.
stems and fronds
 

 4. 

You would expect to find spores
a.
on leaf cuticles.
b.
on moss rhizoids.
c.
in a new gametophyte.
d.
on the underside of fern fronds.
 

 5. 

The part of a moss that absorbs water and nutrients from the soil is the
a.
rhizoid.
b.
stalk.
c.
capsule.
d.
gametophyte.
 

 6. 

What produces egg and sperm cells during the life cycle of a plant?
a.
gamete
b.
gametophyte
c.
sporophyte
d.
zygote
 

 7. 

The spores that plants produce develop into the
a.
gametes.
b.
zygotes.
c.
sporophyte stage.
d.
gametophyte stage.
 

 8. 

Which is NOT a characteristic of a plant’s vascular tissue?
a.
It transports water and food inside the plant.
b.
It supports the plant’s stems and leaves.
c.
It exposes the plant’s leaves to the sun.
d.
It transports egg and sperm cells for reproduction.
 

 9. 

A fern’s fronds are
a.
leaves.
b.
roots.
c.
stems.
d.
spores.
 

 10. 

The stages of a plant’s life cycle are
a.
sporophyte and spore.
b.
sporophyte and gametophyte.
c.
spore and gametophyte.
d.
egg and gametophyte.
 

 11. 

What happens in the phloem?
a.
Water moves up from roots.
b.
Food moves down from leaves.
c.
Food moves up from roots.
d.
Water moves down to roots.
 

 12. 

Which of the following is NOT a part of a seed?
a.
stored food
b.
the embryo
c.
the cotyledon
d.
the fruit
 

 13. 

Plants that produce seeds
a.
do not need cuticles on their leaves.
b.
transport the seeds in vascular tissue.
c.
can live in relatively dry environments.
d.
do not need vascular tissue.
 

 14. 

What part of a woody stem forms rings that indicate the tree’s age?
a.
xylem
b.
phloem
c.
cambium
d.
inner bark
 

 15. 

What characteristic do gymnosperms share?
a.
They live only in hot, dry climates.
b.
They produce seeds that are not enclosed by fruits.
c.
They are trees.
d.
They grow cones.
 

 16. 

The most diverse group of gymnosperms is the
a.
cycads.
b.
ginkgoes.
c.
gnetophytes.
d.
conifers.
 

 17. 

The reproductive structures of most gymnosperms are called
a.
pollen.
b.
ovules.
c.
cones.
d.
sperm cells.
 

 18. 

All angiosperms
a.
produce cones.
b.
produce fruits.
c.
are seedless.
d.
are tropical.
 

 19. 

What is a characteristic of a monocot?
a.
branching veins in its leaves
b.
flowers with four or five petals
c.
two cotyledons in each seed
d.
scattered bundles of vascular tissue in its stem
 

 20. 

A flower’s female reproductive parts are called
a.
sepals.
b.
anthers.
c.
pistils.
d.
filaments.
 

 21. 

How are angiosperms different from gymnosperms?
a.
Angiosperms produce fruits.
b.
Angiosperms produce seeds.
c.
Gymnosperms do not produce pollen.
d.
Angiosperms do not produce pollen.
 

 22. 

Angiosperms that live for more than two years are called
a.
annuals.
b.
biennials.
c.
perennials.
d.
monocots.
 

 23. 

Which is NOT a way that angiosperms are useful to people?
a.
as a source of food
b.
as a source of clothing
c.
as a source of medicine
d.
as a major source of fertilizer
 

 24. 

In angiosperms, which of the following happens after a zygote is formed?
a.
Pollen falls on the sepals.
b.
Pollen falls on the stigma.
c.
A fruit forms.
d.
An insect picks up pollen from an anther.
 

 25. 

Germination will not happen unless a seed
a.
is dispersed far from the plant that produced it.
b.
absorbs water.
c.
uses its stored food.
d.
grows stamens and a pistil.
 

 26. 

Gases pass in and out of a leaf through the
a.
phloem.
b.
xylem.
c.
cuticle.
d.
stomata.
 

 27. 

What is NOT a root function in plants?
a.
to absorb water
b.
to store food
c.
to anchor plants
d.
to produce food
 

 28. 

Root hairs help a plant
a.
transport food to the root.
b.
absorb water and nutrients.
c.
protect the root.
d.
store food.
 

 29. 

What determines the time of flowering in many plants?
a.
the amount of water a plant receives
b.
the amount of light a plant receives
c.
the amount of darkness a plant receives
d.
the amount of fertilizer a plant receives
 

 30. 

Dormancy is a period when an organism’s growth or activity
a.
continues.
b.
stops.
c.
speeds up.
d.
starts.
 

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. 

All plants are eukaryotes that contain many cells. _________________________

 

 32. 

A moss is a type of vascular plant. _________________________

 

 33. 

The gametophyte generation of a moss has structures that look like roots, a stem, and leaves. _________________________

 

 34. 

All seed plants have vascular tissue and use seeds to reproduce. _________________________

 

 35. 

The seed coat is the young plant that develops from a fertilized egg. _________________________

 

 36. 

The main function of leaves is to carry out the food-making process of germination. _________________________

 

 37. 

A gymnosperm is a seed plant that produces naked seeds. _________________________

 

 38. 

Monocots include grasses, lilies, and tulips. _________________________

 

 39. 

The coiling of two vines around each other is an example of a plant response to gravity. _________________________

 

 40. 

Auxin is a hormone that speeds up the growth of a plant’s cells. _________________________

 

Completion
Complete each sentence or statement.
 

 41. 

A waxy, waterproof layer called the ____________________ covers the leaves of most plants.
 

 

 42. 

In a plant’s life cycle, a spore develops into a stage known as the ____________________.
 

 

 43. 

Mosses live in environments where they can absorb ____________________ and nutrients.
 

 

 44. 

____________________ plants do not have a complex system to transport water, nutrients, and food through their bodies.
 

 

 45. 

Thin, rootlike structures called ____________________ anchor mosses to the ground.
 

 

 46. 

Ferns, club mosses, and ____________________ are the three groups of seedless vascular plants.
 

 

 47. 

The ancestors of today’s plants were most likely ancient ____________________.
 

 

 48. 

Water and minerals enter a plant’s roots and move through the ____________________ into the stems and leaves.
 

 

 49. 

In some plants, food is stored inside seed leaves called ____________________.
 

 

 50. 

The process by which water evaporates from a plant’s leaves is known as ____________________.
 

 

 51. 

Cycads and gnetophytes belong to the group of seed plants known as ____________________.
 

 

 52. 

All gymnosperms have ____________________, and most also have needlelike or scalelike leaves and deep-growing root systems.
 

 

 53. 

As the seeds of an angiosperm develop, the ovary changes into a(n) ____________________.
 

 

 54. 

Angiosperms that have seeds with two seed leaves are called ____________________.
 

 

 55. 

The flowers of ____________________ usually have either three petals or a multiple of three petals.
 

 

 56. 

A plant’s growth response toward or away from a stimulus is called a(n) ____________________.
 

 

 57. 

Plants produce a variety of chemicals called ____________________, which affect how they grow and develop.
 

 

 58. 

_________________________ is a plant’s response to seasonal changes in the length of night and day.
 

 

 59. 

Dormancy helps plants survive freezing temperatures and lack of _________________________.
 

 

 60. 

Angiosperms that complete their life cycle in two years are called _________________________.
 

 

Short Answer
 
 
Use the diagram to answer each question.

plants_files/i0650000.jpg
 

 61. 

What types of vascular tissue are found in Structure E? Explain their roles.
 

 62. 

Identify the structure labeled C in the diagram, and describe its function.
 

 63. 

What cell structure do the many dark dots in the cells labeled D represent? What is the function of this cell structure?
 

 64. 

Identify the name and label of the structure in the diagram that slows down the process of transpiration.
 

 65. 

Identify the structures labeled F in the diagram, and describe their function.
 

 66. 

Why are there so many spaces among the lower leaf cells?
 
 
Use the diagram to answer each question.

plants_files/i0720000.jpg
 

 67. 

Identify the structures labeled A and B in the diagram. Are these male or female reproductive structures?
 

 68. 

Identify the structures labeled C, D, and E in the diagram. Are these male or female reproductive structures?
 

 69. 

To which structure shown in the diagram do pollen grains attach during pollination? What holds the pollen grains on that structure?
 

 70. 

After fertilization, what happens to the structure labeled E in the diagram?
 

 71. 

Identify the structure labeled F in the diagram, and describe its function.
 

 72. 

The diagram shows only three of the flower’s six petals. Was this flower produced by a monocot or a dicot? Explain your reasoning.
 

Essay
 

 73. 

What characteristics do plants share?
 

 74. 

Would you be surprised to learn that liverworts often grow along the sides of streams, and hornworts live in moist soil? Explain your answer.
 

 75. 

Suppose someone showed you a mature frond that had been cut from a fern. How could you tell which surface of the frond was the upper surface and which was the underside?
 

 76. 

If you came across a tall plant in a forest, would you think it was a vascular plant or a nonvascular plant? Explain why.
 

 77. 

Could you tell the difference between the xylem and phloem in a plant just by looking at the direction in which substances move in these tissues? Explain.
 

 78. 

Why is it important for a gardener to store seeds in a dry place until it is time to plant them?
 

 79. 

Suppose you are hiking and find a plant with leaves that have branching veins. The plant’s flowers have five petals. What pattern of vascular tissue would you expect to find if you cut through the plant’s stem? Explain your reasoning.
 

 80. 

If a houseplant is placed directly under a bright light, the plant’s stems will tend to grow straight up. How do hormones contribute to this response?
 



 
Check Your Work     Reset Help