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

Introduction to Life Science



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

 1. 

The ways in which people change the world around them to meet their needs or solve practical problems are called
A
science.
B
technology.
C
feedback.
D
systems.
 

 2. 

What is the goal of technology?
A
to produce and deliver cereal
B
to understand how the natural world functions
C
to study the natural world
D
to improve the way people live
 

 3. 

Science and technology are
A
the same thing.
B
not important.
C
dependent on each other.
D
completely unrelated.
 

 4. 

An endoscope is an example of
A
science.
B
technology.
C
brainstorming.
D
prototyping.
 

 5. 

One positive effect of pesticides is
A
greater food production.
B
creating more work for farmers.
C
pesticides washing into streams.
D
pesticides harming people and animals.
 

 6. 

What are some reasonable safety precautions for field investigations?
A
None; there are no hazards in the field.
B
Always wear goggles and aprons.
C
Be prepared and use common sense.
D
Always go into the field alone.
 

 7. 

What is the first thing you should do if an accident occurs?
A
Find the emergency equipment.
B
Notify your teacher.
C
Go to the nearest hospital.
D
Start first aid treatment.
 

 8. 

Using one or more of your senses to gather information is called
A
observing.
B
inferring.
C
predicting.
D
classifying.
 

 9. 

Observations that deal with a number or amount are called
A
manipulated observations.
B
quantitative observations.
C
qualitative observations.
D
operational observations.
 

 10. 

Observations that deal with descriptions that cannot be expressed in numbers are called
A
manipulated observations.
B
quantitative observations.
C
qualitative observations.
D
operational observations.
 

 11. 

Explaining or interpreting the things you observe based on reasoning from what you already know is called
A
observing.
B
inferring.
C
predicting.
D
classifying.
 

 12. 

Trying to explain why a cactus needs little water to survive is an example of
A
a prediction.
B
drawing a conclusion.
C
scientific inquiry.
D
classification.
 

 13. 

Making a forecast of what will happen in the future based on past experience or evidence is called
A
observing.
B
inferring.
C
predicting.
D
classifying.
 

 14. 

When scientists put things into categories or group together items that are alike in some way, they are
A
inferring.
B
predicting.
C
classifying.
D
making models.
 

 15. 

When scientists create a representation of a complex process, they are
A
inferring.
B
predicting.
C
classifying.
D
making models.
 

 16. 

Knowing how to use lab equipment is an example of
A
good lab preparations.
B
performing a lab.
C
being in the filed.
D
completing a lab.
 

 17. 

In a scientific experiment, a statement that describes how to measure a particular variable or define a particular term is a(n)
A
hypothesis.
B
manipulated variable.
C
operational definition.
D
responding variable.
 

 18. 

If a beaker breaks, the first thing you should do is
A
clean up the broken glass.
B
ask a classmate for help.
C
read safety symbols for the lab.
D
notify your teacher.
 

 19. 

Scientists’ skepticism should be balanced with an ability to
A
accept new and different ideas.
B
be honest.
C
find solutions to problems.
D
learn more about the topics they study.
 

 20. 

What scientific attitude is especially important when a scientist’s results go against previous ideas?
A
curiosity
B
honesty
C
skepticism
D
creativity
 

 21. 

Grocery stores organize food according to food type—diary, frozen, bakery, and so on. This is an example of
A
observation.
B
posing questions.
C
classifying.
D
inferences.
 

 22. 

Scientists can communicate their results
A
at scientific meetings.
B
in scientific journals.
C
by exchanging information on the Internet.
D
all of the above
 

 23. 

The use of endoscopes to study the functions of the heart shows that
A
advances in science and technology often depend on one another.
B
science is important to technology.
C
science changes the natural world.
D
technology is independent from science.
 

 24. 

A person who is trained to use both technology and scientific knowledge to solve practical problems is known as a(n)
A
biologist.
B
engineer.
C
forest technician.
D
scientist.
 

 25. 

To reveal trends in data, the data should be presented in a(n)
A
hypothesis.
B
graph.
C
operational definition.
D
scientific investigation.
 

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.
 

 26. 

Eye glasses are one example of how technology has improved lives. _________________________

 

 27. 

Technology never has negative consequences for society. _________________________

 

 28. 

Safety symbols alert you to possible dangers and identify safety equipment you should use. _________________________

 

 29. 

When you do field work, you should never tell an adult where you will be. _________________________

 

 30. 

In science, skepticism means coming up with inventive ways to solve problems or produce new things. _________________________

 

 31. 

Thinking and questioning is the start of the scientific inquiry process. _________________________

 

 32. 

A knowledge of life science is essential for botanists, forest technicians, park rangers, and health-care workers. __________________________

 

 33. 

A(n) hypothesis is a statement that describes how to measure a particular variable or define a particular term. _________________________

 

 34. 

A model is a good way for scientists to look for patterns or trends in data. _________________________

 

 35. 

Counting ten bikes on a bike rack is an example of a qualitative observation. _________________________

 

Completion
Complete each sentence or statement.
 

 36. 

Products that help people meet their needs or solve practical problems are examples of ____________________.
 

 

 37. 

Technology ____________________ solve every problem.
 

 

 38. 

Just as in the lab, safety is also important when doing activities in the ____________________.
 

 

 39. 

____________________, which is the process of grouping together items that are alike in some way, helps a scientist organize information.
 

 

 40. 

Scientists who possess the attitude of ____________________ always report their observations and results truthfully.
 

 

 41. 

Scientists who possess the attitude of open-mindedness are capable of accepting ____________________ ideas.
 

 

 42. 

Scientific ____________________ refers to the diverse ways in which scientists study the natural world and propose explanations based on the evidence they gather.
 

 

 43. 

After interpreting data, a scientist will draw ______________________ about their results.
 

 

 44. 

In science, a hypothesis must be ____________________.
 

 

 45. 

An experiment in which only one variable is manipulated at a time is called a(n) ___________________ experiment.
 

 

Short Answer
 
 
Use the diagram to answer each question.

Chimpanzee Diet in November
Food
% Diet
Fruit
62.0%
Insects
16.0%
Leaves
16.0%
Miscellaneous
6.0%
 

 46. 

Explain how researchers might have obtained the data shown in the table.
 

 47. 

Describe how the chimpanzee’s diet has been classified.
 

 48. 

How does the data provide an example of scientific inquiry?
 

 49. 

Do the data in this table represent quantitative observations or qualitative observations? Explain.
 

 50. 

Describe another method for presenting the data in the table above and explain the method’s benefits.
 
 
Use the diagram to answer each question.

Number of Chirps per Minute
Cricket
15°C
20°C
25°C
1
91
135
180
2
80
124
169
3
89
130
176
4
78
125
158
5
77
121
157
Average
83
127
168
 

 51. 

What is the purpose of recording data in a table like the one above?
 

 52. 

Is there a relationship between the number of chirps per minute and the temperature? If so, describe the relationship.
 

 53. 

What hypothesis might this experiment be designed to test?
 

 54. 

Identify the manipulated variable and the responding variable in this experiment. Explain.
 

 55. 

State a conclusion based on the data from this experiment.
 

Essay
 

 56. 

What is the difference between science and technology? How are they related?
 

 57. 

Compare and contrast the skills of inferring and predicting.
 

 58. 

Identify and describe five attitudes, or habits of mind, that are important for a successful scientist to possess.
 

 59. 

Identify the six major stages of the process of scientific inquiry and explain why the process is not a rigid sequence of steps.
 

 60. 

Suppose you want to find out the effects of light on the growth of tomatoes. What variables would you need to control in your experiment?
 



 
Check Your Work     Reset Help