"); 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 1 Part C Study Guide



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

 1. 

Write eight and thirty-two hundreds with a decimal point.
a.
8.32
c.
83.2
b.
832
d.
0.832
 

 2. 

Write 4 dollars, 5 dimes, 9 pennies with a dollar sign and decimal point.
a.
$4.95
c.
$40.59
b.
$5.94
d.
$4.59
 

 3. 

Which amount of money is greatest?
a.
2 dimes and 4 pennies
b.
4 dimes and 2 pennies
c.
3 dimes and 2 pennies
d.
2 dimes and 3 pennies
 

 4. 

How many pennies are equal to $0.03?
a.
0 pennies
c.
3 dimes
b.
30 pennies
d.
3 pennies
 

 5. 

Marsha spent 7 dollars and 4 dimes for school supplies. Write this amount with a dollar sign and decimal point.
a.
$4.70
c.
$7.40
b.
$11.00
d.
$7.04
 

 6. 

Jay has these coins in his pocket. How much money is in his pocket?
unit_1c_study_files/i0070000.jpg
a.
$0.62
c.
$0.63
b.
$0.72
d.
$0.60
 

 7. 

You have these coins.
unit_1c_study_files/i0080000.jpg
Which amount CANNOT be shown with your coins?
a.
$0.31
c.
$0.27
b.
$0.26
d.
$0.30
 

 8. 

Marty spent this money for a snack. How much did the snack cost?
unit_1c_study_files/i0090000.jpg
a.
$1.22
c.
$1.13
b.
$1.12
d.
$1.10
 

 9. 

You want to pay for a gift with the fewest coins and bills. You have one $10 bill, three $1 bills, and 3 pennies. What other coins to you need?

unit_1c_study_files/i0100000.jpg
a.
1 quarter
c.
7 pennies
b.
2 dimes
d.
1 nickel
 

 10. 

Jackie made a list of the coins and bills she got by doing work for her neighbor. How much money did Jackie earn?
4 one dollar bills
3 quarters
9 pennies
a.
$4.39
b.
$4.09
c.
$4.84
d.
$4.75
 

 11. 

How much change would you get for a purchase of $2.06 if you paid with a $10 bill?
a.
$8.94
c.
$12.06
b.
$7.94
d.
$6.94
 

 12. 

Write the decimal for the shaded part.
unit_1c_study_files/i0130000.jpg
a.
5
c.
50
b.
0.05
d.
0.5
 

 13. 

Write the decimal for the shaded part.
unit_1c_study_files/i0140000.jpg
a.
0.72
b.
0.28
c.
0.27
d.
0.82
 

 14. 

Write the word name for the shaded part.
unit_1c_study_files/i0150000.jpg
a.
five hundredths
c.
five tenths
b.
five hundreds
d.
five tens
 

 15. 

Write the word name for the shaded part.
unit_1c_study_files/i0160000.jpg
a.
nine hundreds
c.
nine tenths
b.
nine tens
d.
nine hundredths
 

 16. 

Maria is filling a shelf with equal-sized books as shown in the picture. There is enough room for 10 books. What decimal represents the filled part of the shelf?
unit_1c_study_files/i0170000.jpg
a.
0.4
c.
0.6
b.
0.5
d.
0.4
 

 17. 

Look at the School Bus Route problem and how Clay tried to solve it. Then answer the question below about what Clay did wrong.
School Bus Routeunit_1c_study_files/i0180000.jpgFrom the first house it stops at, Jenny’s school bus travels 18 miles every morning until it gets to the school. Jenny gets on 10 miles from school. How far is it from the first house to Jenny's house?
unit_1c_study_files/i0180001.jpg
Clay
The bus goes 18 miles.
___ + 10 = 18
Missing number: 28
It is 28 miles from the start to Jenny's house.

What is wrong with Clay’s answer to the School Bus Route problem?
a.
He wrote the wrong number sentence.
b.
He solved the sentence incorrectly.
c.
He answered the wrong question.
d.
He should have multiplied.
 

 18. 

Look at the School Bus Route problem and Clay’s work to solve it. Then answer the question below.
School Bus Routeunit_1c_study_files/i0190000.jpgFrom the first house it stops at, Jenny’s school bus travels 18 miles every morning until it gets to the school. Jenny gets on 10 miles from school. How far is it from the first house to Jenny's house?
unit_1c_study_files/i0190001.jpg
Clay
The bus goes 18 miles.
___ + 10 = 18
Missing number: 8
It is 8 miles from the start to Jenny's house.

How can you check Clay’s answer?
a.
Add 8 and 10 to see if you get 18.
b.
Subtract 10 from 8 to see if you get 18.
c.
Add 10, 18, and 28.
d.
Multiply 18 by 10.
 

Numeric Response
 

 19. 

Camille has 4 dollars and enough pennies to make $4.98. How many pennies does she have?

Write your answer in the answer boxes at the top of the grid at the right. Fill in one bubble under each box in which you wrote your answer.
unit_1c_study_files/i0210000.jpg

 

Other
 

 20. 

Bob planted tomatoes in 0.7 of his square garden. Show two different ways to shade 0.7 of a square.
First way
unit_1c_study_files/i0230000.jpg
Second way
unit_1c_study_files/i0230001.jpg
 

 21. 

Jan’s Changeunit_1c_study_files/i0240000.jpgJan is buying the plant shown below. She will pay for it with a $5 bill.
unit_1c_study_files/i0240001.jpg
Part Aunit_1c_study_files/i0240002.jpgWhat is Jan’s correct change using the fewest number of coins?
Show All Work


Correct coins ______________________________________________________

Part Bunit_1c_study_files/i0240003.jpgJan’s correct change is how many cents? ___________¢

Part Cunit_1c_study_files/i0240004.jpgList two other groups of coins that make the right amount of change. Do not use more than eight coins.
First group of coins
 
Second group of coins
   
   
   
 



 
Check Your Work     Reset Help