Site hosted by Angelfire.com: Build your free website today!
"); 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].text; } else responseText = answer.value; return(responseText); } function ScoreAnswer(answerIndex, responseText) { var listIndex; var answerText; answerText = ansMap[answerIndex]; if (qtypeMap.charAt(answerIndex) == "4") return(NumericCompare(responseText, answerText)); else if (qtypeMap.charAt(answerIndex) == "5") 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 (studentText.length > 0 && notesText.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); } else if (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].text; } 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: 
 

Online Review - Heat Chapter 10



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

1. 

A substance’s temperature increases as a direct result of
a.
energy being removed from the particles of the substance.
b.
kinetic energy being added to the particles of the substance.
c.
a change in the number of atoms and molecules in a substance.
d.
a decrease in the volume of the substance.
 

2. 

What happens to the internal energy of an ideal gas when it is heated from 0°C to 4°C?
a.
It increases.
c.
It remains constant.
b.
It decreases.
d.
It is impossible to determine.
 

3. 

Which of the following best describes the relationship between two systems in thermal equilibrium?
a.
No net energy is exchanged.
c.
The masses are equal.
b.
The volumes are equal.
d.
The velocity is zero.
 

4. 

What is the temperature of a system in thermal equilibrium with another system made up of ice and water at 1 atm of pressure?
a.
0°F
c.
0 K
b.
273 K
d.
100°C
 

5. 

Heat flow occurs between two bodies in thermal contact when they differ in which of the following properties?
a.
mass
c.
density
b.
specific heat
d.
temperature
 

6. 

A substance registers a temperature change from 20°C to 40°C. This corresponds to an incremental change of
a.
20 K.
c.
36 K.
b.
40 K.
d.
313 K.
 

7. 

What temperature has the same numerical value on both the Celsius and the Fahrenheit scales?
a.
–40°
c.
40°
b.
0°
d.
–72°
 

8. 

What is the temperature increase of 4.0 kg of water when it is heated by an 8.0 ´ 102 W immersion heater for exactly 10.0 min? (cp = 4186 J/kg·°C)
a.
57°C
c.
29°C
b.
51°C
d.
14°C
 

9. 

A machine gear consists of 0.10 kg of iron and 0.16 kg of copper. How much total energy transfer as heat is generated in the gear if its temperature increases by 35°C? (ci = 4.6 ´ 102 J/kg·°C and cc = 3.9 ´ 102 J/kg·°C)
a.
910 J
c.
5100 J
b.
3800 J
d.
4400 J
 

10. 

A slice of bread contains about 4.19 ´ 105 J of energy. If the specific heat of a person is 4.19 ´ 103 J/kg·°C, by how many degrees Celsius would the temperature of a 70.0 kg person increase if all the energy in the bread were converted to heat?
a.
2.25°C
c.
1.43°C
b.
1.86°C
d.
1.00°C
 

11. 

A flat container holds 200 g of water. Over a 10 min period, 1.5 g of water evaporates from the surface. What is the approximate temperature change of the remaining water? (Lv = 2.26 ´ 103 J/g)
a.
4°C
c.
0.4°C
b.
–4°C
d.
–0.4°C
 

12. 

A 5.0 ´ 102 g ice cube with an initial temperature of 0.0°C is placed in a plastic-foam box whose walls are 1.0 cm thick and whose total surface area is 6.0 ´ 102 cm2. If the temperature of the air surrounding the box is exactly 20.0°C and it takes 4.0 h for the ice to completely melt, what is the conductivity of the plastic-foam material? (Lf = 3.3 ´ 102 J/g)
a.
4.0 ´ 10–2 J/m·s·°C
c.
5.0 J/m·s·°C
b.
1.2 ´ 10–3 J/m·s·°C
d.
9.6 ´ 10–2 J/m·s·°C
 

13. 

Which of the following is a substance in which the temperature and pressure remain constant while the substance experiences an inward transfer of energy?
a.
gas
c.
solid
b.
liquid
d.
substance undergoing a change of state
 

14. 

On a sunny day at the beach, the reason the sand gets hot and the water stays relatively cool is attributed to the difference in which property between water and sand?
a.
mass density
c.
temperature
b.
specific heat
d.
thermal conductivity
 

15. 

A 200.0-kg object is attached via an ideal pulley system to paddle wheels that are submerged in 0.480 kg of water at 20.0 °C in an insulated container as shown in the figure.  Then, the object falls through a distance of 5.00 m causing the paddle wheel to turn.  Assuming that all of the mechanical energy lost by the falling object goes into the water, determine the final temperature of the water.
            online_heat_files/i0160000.jpg
a.
4.90 °C
b.
20.5 °C
c.
24.9 °C
d.
40.4 °C
e.
98.2 °C
 

16. 

A 0.030-kg ice cube at 0 °C is placed in an insulated box that contains a fixed quantity of steam at 100 °C. When thermal equilibrium of this closed system is established, its temperature is found to be 23 °C. Determine the original mass of the steam at 100 °C.
            online_heat_files/i0170000.jpg
a.
0.17 g
b.
1.7  g
c.
2.5 g
d.
4.8 g
e.
5.0 g
 

17. 

Judy places 0.150 kg of boiling water in a thermos bottle.  How many kilograms of ice at –12.0  °C must Judy add to the thermos so that the equilibrium temperature of the water is 75.0 °C?
a.
0.0233 kg
b.
0.0265 kg
c.
0.0436 kg
d.
0.0713 kg
e.
0.625 kg
 

18. 

Complete the following statement:  The transfer of heat by convection will occur
a.
only in metals.
b.
only in a vacuum.
c.
only in non-metallic solids.
d.
with or without the presence of matter.
e.
only in the presence of a liquid or a gas.
 

19. 

Which one of the following processes does not occur during the convective transfer of heat within a container of air?
a.
The volume of a warmed part of the air is reduced and its density increases.
b.
A continuous flow of warmer and cooler parts of air is established.
c.
The flow of air molecules results in a flow of heat.
d.
The cooler portion of the air surrounding a warmer part exerts a buoyant force on it.
e.
As the warmer part of the air moves, it is replaced by cooler air which is subsequently warmed.
 

20. 

Complete the following statement:  Most of the heat that is lost to space from the earth occurs by
a.
conduction.
b.
convection.
c.
radiation.
d.
both conduction and radiation.
e.
both conduction and convection.
 



 
Check Your Work     Reset Help