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

Ecosystems and Biomes



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

 1. 

Consumers that eat both plants and animals are called
a.
omnivores.
b.
herbivores.
c.
carnivores.
d.
scavengers.
 

 2. 

Which of these consumers is a herbivore?
a.
lion
b.
deer
c.
spider
d.
snake
 

 3. 

If a kestrel eats a mouse that eats grass, the kestrel is a
a.
producer.
b.
second-level consumer.
c.
first-level consumer.
d.
decomposer.
 

 4. 

The many overlapping food chains in an ecosystem make up a(n)
a.
food web.
b.
niche.
c.
energy pyramid.
d.
feeding level.
 

 5. 

A diagram that shows the amount of energy that moves from one feeding level to another in a food web is called a(n)
a.
food chain.
b.
energy pyramid.
c.
ecosystem.
d.
niche.
 

 6. 

In an energy pyramid, which level has the most available energy?
a.
producer level
b.
first-level consumer level
c.
second-level consumer level
d.
third-level consumer level
 

 7. 

The step in the water cycle in which water vapor becomes liquid water is
a.
condensation.
b.
nitrogen fixation.
c.
recycling.
d.
precipitation.
 

 8. 

In which process do molecules of liquid water absorb energy and change into the gas state?
a.
condensation
b.
precipitation
c.
evaporation
d.
recycling
 

 9. 

In which process do producers use carbon from carbon dioxide to produce other carbon-containing molecules?
a.
the nitrogen cycle
b.
photosynthesis
c.
precipitation
d.
the water cycle
 

 10. 

Some bacteria that fix nitrogen live in bumps on the roots of certain plants. These bumps are called
a.
nodules.
b.
starches.
c.
legumes.
d.
droplets.
 

 11. 

The study of where organisms live is called
a.
dispersal.
b.
biogeography.
c.
ecology.
d.
climatology.
 

 12. 

Dandelions, horses, and other organisms that were brought by humans from one part of the world to another are examples of
a.
native species.
b.
exotic species.
c.
parasites.
d.
endangered species.
 

 13. 

The ocean prevents the Australian kangaroo from dispersing throughout the world. The ocean is an example of which limit to dispersal?
a.
climate
b.
a physical barrier
c.
competition
d.
an exotic species
 

 14. 

The typical weather pattern in an area over a long period of time is called
a.
climate.
b.
precipitation.
c.
the water cycle.
d.
weather.
 

 15. 

A group of land ecosystems with similar climates and organisms is called a(n)
a.
energy pyramid.
b.
climate.
c.
biome.
d.
food web.
 

 16. 

Which biome is extremely cold and dry?
a.
desert
b.
tundra
c.
grassland
d.
mountains
 

 17. 

Ponds and rivers are two types of
a.
marine ecosystems.
b.
rain forest biomes.
c.
freshwater ecosystems.
d.
estuary ecosystems.
 

 18. 

The ocean water is completely dark throughout the
a.
estuary.
b.
intertidal zone.
c.
neritic zone.
d.
deep zone.
 

 19. 

An organism that can make its own food is called a
a.
consumer.
b.
decomposer.
c.
producer.
d.
scavenger.
 

 20. 

Vultures, which feed on the bodies of dead organisms, are
a.
first-level consumers.
b.
scavengers.
c.
producers.
d.
herbivores.
 

 21. 

Which biome receives less than 25 centimeters of rain per year?
a.
desert
b.
grassland
c.
temperate rain forest
d.
tropical rain forest
 

 22. 

The first organism in a food chain is always a
a.
consumer.
b.
herbivore.
c.
carnivore.
d.
producer.
 

 23. 

Which of these is NOT an example of precipitation?
a.
rain
b.
snow
c.
groundwater
d.
hail
 

 24. 

Which ecosystem is found where the fresh water of a river meets the salt water of the ocean?
a.
estuary
b.
neritic zone
c.
surface zone
d.
rocky intertidal zone
 

 25. 

What do producers release as a result of photosynthesis?
a.
hydrogen
b.
nitrogen
c.
oxygen
d.
carbon dioxide
 

 26. 

The very slow movement of the continents is called
a.
continental drift.
b.
biogeography.
c.
dispersal.
d.
distribution.
 

 27. 

Which of the following is NOT an example of dispersal?
a.
the wind carrying dandelion seeds to other fields
b.
a dog bringing home sticky plant burs on its fur
c.
an insect being carried down a river on a floating leaf
d.
a squirrel living in a forest on a mountain
 

 28. 

Continental drift resulted in kangaroos and other unique species developing in
a.
Pangaea.
b.
Australia.
c.
Asia.
d.
India.
 

 29. 

What area(s) are not part of any major biome?
a.
tundras
b.
deserts
c.
grasslands
d.
mountains and ice
 

 30. 

A large variety of plants grows in tropical rain forest because
a.
many insects live there.
b.
the forest floor is very dark.
c.
it has very good soil.
d.
it is warm, humid, and rainy.
 

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. 

Organisms that capture the energy of sunlight to make food are called producers. _________________________

 

 32. 

In an energy pyramid, the available energy increases at each feeding level compared to the level below. _________________________

 

 33. 

Second-level consumers may be either carnivores or omnivores. _________________________

 

 34. 

Rain, snow, sleet, and hail are examples of condensation. _________________________

 

 35. 

Producers release the gas oxygen as a product of photosynthesis. _________________________

 

 36. 

Dandelions are a(n) native species in the United States because they were brought from Europe by the colonists. _________________________

 

 37. 

The deciduous forest biome is typically populated by many grasses, along with a few shrubs and trees. _________________________

 

 38. 

Oak, maple, and beech trees, which lose their leaves each year, are typically found in a boreal forest. _________________________

 

 39. 

Rivers, ponds, and lakes are part of marine ecosystems. _________________________

 

 40. 

The movement of Earth’s continents has affected how species are distributed. _________________________

 

Completion
Complete each sentence or statement.
 

 41. 

Bacteria and fungi are known as ____________________ because they break down the remains of organisms.
 

 

 42. 

The energy role of a grizzly bear is that of a(n) ____________________ because it cannot make its own food.
 

 

 43. 

A diagram called a(n) _________________________ shows how much energy is available at each level of a food web.
 

 

 44. 

The least amount of energy is available at the ____________________ level of an energy pyramid.
 

 

 45. 

The energy role of the first organism in a food chain is always a(n) ____________________.
 

 

 46. 

An organism that eats only plants is a(n) ____________________ consumer.
 

 

 47. 

Water vapor turns into droplets of liquid water in the process of ____________________.
 

 

 48. 

Water from a lake changes to the gas state in the process of ____________________.
 

 

 49. 

Certain bacteria change nitrogen gas into a usable form in a process called _________________________.
 

 

 50. 

Producers use carbon from the gas _________________________ to make sugars and starches.
 

 

 51. 

The distribution of species has been affected by the slow movement of Earth’s continents called _________________________.
 

 

 52. 

Small, light organisms such as baby spiders can be dispersed by ____________________.
 

 

 53. 

Mountains and deserts that are difficult for organisms to cross are ____________________ barriers to dispersal.
 

 

 54. 

Temperature and precipitation determine an area’s ____________________, which can limit dispersal of organisms.
 

 

 55. 

The ____________________ biome receives less than 25 centimeters of rain a year and may have large temperature shifts every day.
 

 

 56. 

The soil that is frozen all year in the tundra is called ____________________.
 

 

 57. 

The neritic zone over the continental shelf is part of the ____________________ ecosystem.
 

 

 58. 

The part of the open ocean that receives enough light for floating algae to carry out photosynthesis is called the ____________________ zone.
 

 

 59. 

A bird eating berries and depositing the seeds in its wastes is an example of ____________________.
 

 

 60. 

Places with similar ____________________ tend to have species that occupy similar niches.
 

 

Short Answer
 
 
Use the diagram to answer each question.

ecoandb_files/i0650000.jpg
 

 61. 

Which organisms shown are producers?
 

 62. 

Which organisms shown are consumers?
 

 63. 

What would happen to the other organisms if all the plants in this ecosystem died?
 

 64. 

Use the organisms pictured in this ecosystem to construct a food chain.
 

 65. 

Approximately what percentage of the energy in the plants is passed on to the animals that eat them?
 

 66. 

Why are there relatively few third-level consumers like bears in an ecosystem?
 
 
Use the diagram to answer each question.

ecoandb_files/i0720000.jpg
 

 67. 

Which number represents the organisms responsible for converting nitrogen gas into a usable form of nitrogen?
 

 68. 

Which number represents the form of nitrogen that can be used by plants?
 

 69. 

Describe three roles bacteria play in the nitrogen cycle.
 

 70. 

Explain the role of an animal such as the horse in the nitrogen cycle.
 

 71. 

Which number represents a group of organisms that break down the wastes and remains of other organisms?
 

 72. 

On what part of a plant do the organisms represented by number 8 live?
 

Essay
 

 73. 

Construct a food chain that includes you. Identify the producers and types of consumers.
 

 74. 

Explain why decomposers are essential to life on Earth.
 

 75. 

Describe how oxygen and carbon dioxide cycle in the environment.
 

 76. 

Compare and contrast the temperatures of the following biomes: tropical rain forest, deciduous forest, boreal forest.
 

 77. 

Explain why most marine organisms live near the water surface or near the shore.
 

 78. 

Explain how water can be a means of dispersal for plants but can limit the dispersal of animals.
 

 79. 

Briefly describe the steps in the water cycle.
 

 80. 

Explain why it is mostly the climate in an area that determines its biome.
 



 
Check Your Work     Reset Help