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

Unit 2 Part A



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

 1. 

Jessica packed 38 oranges and 96 apples for the class picnic. Use mental math to find how many pieces of fruit she packed.
a.
108 pieces of fruit
c.
58 pieces of fruit
b.
124 pieces of fruit
d.
134 pieces of fruit
 

 2. 

To add 119 + 15 using mental math, Lia added 120 + 15 and got 135. What should she do next?
a.
Add 135 + 5.
c.
Subtract 135 + 1.
b.
Add 135 – 5.
d.
Subtract 135 – 1.
 

 3. 

To add 819 + 78 using mental math, Ali added 819 + 1 and got 820. What should he do next?
a.
Add 820 + 2.
c.
Subtract 820 – 2.
b.
Add 820 + 77.
d.
Subtract 820 – 77.
 

 4. 

Mrs. Jones was born in 1908. This was the year that Henry Ford introduced the Model T car which sold for $850. In what year was Mrs. Jones 93 years old? Use mental math to solve.
a.
1917
b.
1991
c.
2001
d.
2003
 

 5. 

Add mentally.unit_2b_study_files/i0060000.jpg14 + 29
a.
43
b.
24
c.
33
d.
20
 

 6. 

To subtract 212 – 67 using mental math, Heath subtracted 212 – 70 and got 142. What should he do next?
a.
Add 142 + 7.
c.
Subtract 142 – 3.
b.
Subtract 142 – 7.
d.
Add 142 + 3.
 

 7. 

To subtract 62 – 51 using mental math, Shainia subtracted 62 – 50 and got 12. What should she do next?
a.
Add 12 + 8.
c.
Subtract 12 – 8.
b.
Subtract 12 – 1.
d.
Add 12 + 1.
 

 8. 

For the winter choral concert, 298 seats were filled in the McDermott auditorium. The auditorium seats 400. Use mental math to find how many seats were empty.
a.
102 seats
c.
202 seats
b.
192 seats
d.
92 seats
 

 9. 

Jana found 65 shells on the beach on Monday. On Tuesday, Jana found 104 shells. Use mental math to find how many more shells Jana found on Tuesday than on Monday.
a.
49 shells
c.
35 shells
b.
41 shells
d.
39 shells
 

 10. 

Subtract using mental math. Use compensation.
778 – 397
a.
375
c.
78
b.
178
d.
381
 

 11. 

Which is the best estimate for 3,963 + 3,473?
a.
8,000
c.
6,000
b.
7,000
d.
5,000
 

 12. 

Which is the best estimate of the difference?
unit_2b_study_files/i0130000.jpg
a.
11,000
c.
13,000
b.
12,000
d.
28,000
 

 13. 

Cindi estimated 2,653 + 2,973 using front-end estimation. What did she add?
a.
2,000 + 2,000
c.
2,000 + 1,000
b.
3,000 + 3,000
d.
2,000 + 3,000
 

 14. 

In 1690, a scientist suggested for the first time that light was wave-like. In 1958, scientists invented the first of various forms of lasers. To the nearest hundred years, which is the best estimate of the number years between these two events?
a.
500 years
b.
400 years
c.
300 years
d.
200 years
 

 15. 

In 1609, the Italian scientist Galileo made the first telescope. In 1990, astronauts on the space shuttle placed the Hubble Telescope into orbit around the Earth. To the nearest hundred years, which is the best estimate of the number years between these two events?
a.
500 years
b.
400 years
c.
300 years
d.
200 years
 

 16. 

ESTIMATE by rounding to the nearest hundred.
884 – 614
a.
600
b.
500
c.
400
d.
300
 

 17. 

ESTIMATE 689 + 665 by rounding to the nearest hundred. Is your estimate an overestimate or an underestimate?
a.
1,400, underestimate
c.
1,200, overestimate
b.
1,500, underestimate
d.
1,400, overestimate
 

 18. 

ESTIMATE 641 – 475 by rounding to the nearest hundred. Is your estimate an overestimate or an underestimate?
a.
300, underestimate
c.
100, underestimate
b.
100, overestimate
d.
200, underestimate
 

 19. 

Overestimate 8,822 – 4,284 by first rounding to the nearest thousand.
a.
5,000
b.
4,000
c.
3,000
d.
2,000
 

 20. 


COMPARING POPULATIONS
Country
Population for each Square Mile
France
283
India
898
Jamaica
638
Poland
329
United States
79

Use the table above. Estimate how many more people there are in each square mile in India than in Jamaica. Is your estimate an overestimate or an underestimate?
a.
300, overestimate
c.
300, underestimate
b.
900, underestimate
d.
200, overestimate
 

 21. 

Maria wants to buy a CD Player which costs $125. She had saved $72 and then received $43 for her birthday. ESTIMATE the amount of money Maria has. Is your estimate an overestimate or an underestimate?
a.
$240, overestimate
c.
$110, underestimate
b.
$120, underestimate
d.
$100, overestimate
 



 
Check Your Work     Reset Help