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

Sponges, Cnidarians, and Worms



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

 1. 

Which of the following is a characteristic shared by all animals?
a.
Their bodies have many cells.
b.
They eat plants.
c.
They reproduce asexually.
d.
They have skeletons.
 

 2. 

An animal that has a backbone is called a(n)
a.
cnidarian.
b.
predator.
c.
vertebrate.
d.
invertebrate.
 

 3. 

Which of the following is NOT a characteristic that biologists use to classify animals?
a.
the animal’s body structure
b.
the animal’s DNA
c.
where the animal lives
d.
how the animal develops
 

 4. 

Which of these animals has radial symmetry?
a.
a sea anemone
b.
a butterfly
c.
a rabbit
d.
a fish
 

 5. 

An animal has bilateral symmetry if
a.
no lines can be drawn to divide the animal into halves that are mirror images.
b.
many lines can be drawn to divide the animal into halves that are mirror images.
c.
one line can be drawn to divide the animal into halves that are mirror images.
d.
any line through the center of the animal divides it into halves that are mirror images.
 

 6. 

How does a sponge obtain its food?
a.
Jelly-like cells trap the food.
b.
Spikes kill the food.
c.
Collar cells filter the food from water.
d.
Pores absorb the food.
 

 7. 

Which of these is a function of spikes in a sponge?
a.
protect the sponge’s body
b.
to help the sponge reproduce
c.
to digest and distribute food
d.
to obtain oxygen
 

 8. 

What does a cnidarian use to capture prey?
a.
pores
b.
stinging cells
c.
collar cells
d.
mouth
 

 9. 

Which of these is vase-shaped?
a.
a medusa
b.
a polyp
c.
a sponge larva
d.
an adult jellyfish
 

 10. 

What makes up a coral reef?
a.
the skeletons of dead corals
b.
the skeletons of living corals
c.
the skeletons of both dead corals and living corals
d.
from the jelly produced by living corals
 

 11. 

Which of the following best describes the kinds of animals found in a coral reef?
a.
only invertebrates
b.
invertebrates and vertebrates
c.
only corals
d.
only vertebrates
 

 12. 

Which of these is NOT a major kind of worm?
a.
a flatworm
b.
a roundworm
c.
a silkworm
d.
a segmented worm
 

 13. 

Which of the following is NOT a flatworm?
a.
a tapeworm
b.
an earthworm
c.
a fluke
d.
a planarian
 

 14. 

Which of the following describes a roundworm’s digestive system?
a.
Food enters the body and wastes leave the body through the same opening.
b.
Food enters through a feeding tube.
c.
Food travels through the digestive system in two directions.
d.
The digestive system is like a tube that is open at both ends.
 

 15. 

A segmented worm’s circulatory system
a.
moves blood in a network of blood vessels.
b.
sloshes blood around freely inside the worm.
c.
has blood vessels only in a few segments.
d.
is shaped like a tube with two openings
 

 16. 

The process by which a new organism forms from the joining of an egg cell and a sperm cell is called
a.
asexual reproduction.
b.
sexual reproduction.
c.
adaptation.
d.
budding.
 

 17. 

At the beginning of its life, a coral polyp
a.
has the medusa body plan.
b.
attaches to a solid surface.
c.
burrows into the mud on the ocean floor.
d.
feeds only on sponges.
 

 18. 

Which of the following is a characteristic of animals with radial symmetry?
a.
They have no distinct head or tail ends.
b.
They must move quickly to catch prey.
c.
They move faster on land than in water.
d.
They have sense organs at the front of their bodies.
 

 19. 

Which of these is a phylum of worms?
a.
Porifera
b.
Annelida
c.
Cnidaria
d.
Invertebrate
 

 20. 

How do sponges reproduce sexually?
a.
Sperm from one sponge fertilize eggs in the same sponge.
b.
Water carries sperm from one sponge to eggs in another sponge.
c.
Water carries eggs from one sponge to sperm in another sponge.
d.
One sponge buds and forms a new sponge.
 

 21. 

Which of these characteristics is shared by all worms?
a.
They have separate sexes.
b.
They are parasites.
c.
They live in soil.
d.
They have a brain.
 

 22. 

Organisms that grow on or in other organisms are called
a.
parasites.
b.
hosts.
c.
prey.
d.
scavengers.
 

 23. 

The bodies of cnidarians have
a.
no symmetry.
b.
radial symmetry.
c.
bilateral symmetry.
d.
both radial and bilateral symmetry.
 

 24. 

What do earthworms do to soil?
a.
They damage it by tunneling.
b.
They add moisture to it.
c.
They poison it with their wastes.
d.
They make it more fertile with their wastes.
 

 25. 

Sponges belong to the phylum
a.
Platyhelminthes.
b.
Porifera.
c.
Cnidarian.
d.
Invertebrate.
 

 26. 

Major functions of animals include obtaining food and oxygen, keeping internal conditions stable, movement, and
a.
adaptation.
b.
reproduction.
c.
classification.
d.
fertilization.
 

 27. 

A balanced arrangement of parts is called
a.
radiality.
b.
asymmetry.
c.
symmetry.
d.
bilaterality.
 

 28. 

In roundworms, wastes exit the body through the
a.
anus.
b.
mouth.
c.
collar cell.
d.
pores.
 

 29. 

What type of worm may be the most abundant animal on Earth?
a.
flatworms
b.
roundworms
c.
segmented worms
d.
earthworms
 

 30. 

The joining of an egg cell and a sperm cell is called
a.
stability.
b.
adaptation.
c.
asexual reproduction.
d.
fertilization.
 

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. 

Most animals are invertebrates. _________________________

 

 32. 

The body parts of animals with radial symmetry are arranged in a circle. _________________________

 

 33. 

Water enters a sponge through openings called collar cells. _________________________

 

 34. 

Cnidarians pull prey to their mouths with their stinging cells. _________________________

 

 35. 

The cnidarian body plan that is shaped like an upside-down bowl is called a polyp. _________________________

 

 36. 

Coral reefs are built by some cnidarians. _________________________

 

 37. 

If certain types of worms are cut into pieces, a whole organism can grow from each piece. _________________________

 

 38. 

A type of worm with many linked sections is a flatworm. _________________________

 

 39. 

Animals must maintain a stable environment within their bodies to survive. _________________________

 

 40. 

If only one line can divide an object into mirror-image halves, the object is said to have radial symmetry. _________________________

 

Completion
Complete each sentence or statement.
 

 41. 

The process by which a single organism produces a new organism identical to itself is called ____________________ reproduction.
 

 

 42. 

Tissues combine to form a(n) ____________________ that performs a specific job for an organism.
 

 

 43. 

Animals without backbones are known as ____________________.
 

 

 44. 

Classifying animals involves comparing their ____________________, a chemical that controls an organism’s inherited characteristics.
 

 

 45. 

An animal may have radial symmetry, bilateral symmetry, or ____________________ symmetry.
 

 

 46. 

Jellyfishes and sea anemones are examples of animals with ____________________ symmetry.
 

 

 47. 

_________________ are the simplest organisms with a brain.
 

 

 48. 

Sponges reproduce sexually and form a(n) ____________________, which is an immature form of an animal that looks very different from an adult.
 

 

 49. 

Cnidarians that have the ____________________ body plan can swim freely.
 

 

 50. 

A sea anemone is an example of a cnidarian with the ____________________ body plan.
 

 

 51. 

A cnidarian expels undigested food through its ____________________.
 

 

 52. 

The rocklike part of a coral reef is built up from the hard ____________________ of corals.
 

 

 53. 

A coral reef begins to form as coral polyps undergo ____________________ reproduction over and over, eventually producing millions of coral polyps.
 

 

 54. 

Planarians belong to the group of worms known as ____________________.
 

 

 55. 

A tapeworm is a(n) ____________________ that lives inside more than one host during its life cycle.
 

 

 56. 

Roundworms have a(n) ____________________ through which wastes exit.
 

 

 57. 

By loosening soil and fertilizing it with their wastes, ____________________ improve the soil in which they live.
 

 

 58. 

The three stages of digestion of food are breakdown, ____________________, and the elimination of wastes.
 

 

 59. 

A structure or behavior that allows an animal to perform a basic function in its environment is called a(n) ____________________.
 

 

 60. 

In a(n) ____________________ circulatory system, blood moves only through tubes called blood vessels.
 

 

Short Answer
 
 
Use the diagram to answer each question.

scandw_files/i0650000.jpg
 

 61. 

What level of organization is represented by A? What is the relationship between that level and the level represented by B?
 

 62. 

Structure B is a section of bone. Identify and define the level of organization represented by B.
 

 63. 

Structure C is a thigh bone. Identify and define the level of organization represented by C.
 

 64. 

Identify and define the level of organization represented by structure D.
 

 65. 

Which of the levels of organization shown in the diagram is the highest level that a sponge has?
 

 66. 

Which of the levels of organization shown in the diagram does a segmented worm have?
 
 
Use the diagram to answer each question.

scandw_files/i0720000.jpg
 

 67. 

Identify animal A. Describe its body plan.
 

 68. 

Identify animal B, and tell whether it is parasitic or free-living.
 

 69. 

Identify animal C, and describe how it gets food.
 

 70. 

Identify animal D, and tell what feature distinguishes it from other worms. Support your answer by referring to features that are visible in the diagram.
 

 71. 

Look at animals A, B, and D. For each of these animals, identify the type of symmetry it exhibits.
 

 72. 

Contrast the digestive systems of animals B and D.
 

Essay
 

 73. 

Contrast the ways in which bilaterally symmetrical animals and radially symmetrical animals move. Explain how each kind of symmetry influences the way in which an animal moves.
 

 74. 

Describe how sponges obtain and digest food.
 

 75. 

What is the term for asexual reproduction in sponges? Explain how the new individual forms.
 

 76. 

One type of coral, called a soft coral, does not produce a hard skeleton. Would soft corals to build coral reefs? Explain why or why not.
 

 77. 

Suppose you find a worm in the soil. How can you tell which of the three major phyla of worms it belongs to by looking at its body shape?
 

 78. 

Crayfish and butterflies are both members of one phylum. Hagfish and turtles are both members of a different phylum than the one to which crayfish and butterflies belong. Are crayfish more closely related to butterflies or to hagfish? Explain your reasoning.
 

 79. 

A tapeworm does not have a digestive system. Explain why a tapeworm can live without a digestive system but an earthworm cannot.
 

 80. 

Describe asexual and sexual reproduction. How do offspring produced by asexual reproduction differ from those produced by sexual reproduction.
 



 
Check Your Work     Reset Help