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

Chapter 7 Review Test



True/False
Indicate whether the sentence or statement is true or false.
 

1. 

When a machine is used to do work, the force applied by the machine is called the effort force.
 

2. 

Under certain conditions, it is possible to get more work out of a machine than you put into it.
 

3. 

Some machines don't multiply the force that is applied to them.
 

4. 

Examples of all three classes of levers are found in the human body.
 

5. 

Bionics is the science that deals with the study of compound machines.
 

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.
 

6. 

The science of designing artificial parts for the human body is called robotics.  _______________

 

7. 

The longer arm of a lever with a mechanical advantage greater than 1 is the effort arm.  _______________

 

8. 

Friction changes the useful work of a machine into mechanical energy.  _______________

 

9. 

Reducing friction increases the ideal mechanical advantage of a machine.  _______________

 

Multiple Choice
Identify the letter of the choice that best completes the statement or answers the question.
 
 
chapter_7_review_files/i0130000.jpg

Figure 7-2A shows a block being moved up an inclined plane. Figure 7-2B shows the same block being lifted the same distance by a fixed pulley. (Ignore friction.)
 

10. 

The fixed pulley shown in Figure 7-2B does which one of the following?
a.
doubles the force required to lift the block
b.
decreases the force required to lift the block
c.
makes the block easier to lift by changing the direction of the force needed to lift it
d.
decreases the force required and changes the direction of the force required
 

11. 

A slanted surface used to raise an object is _____.
a.
an efficiency board
b.
an effort ramp
c.
an inclined plane
d.
a screw
e.
a wedge
 

12. 

A device that does work with only one movement and changes the size or direction of a force is _____.
a.
a compound machine
b.
an effort machine
c.
a screw
d.
a simple machine
e.
a wedge
 

13. 

A bar that is free to pivot about a fixed point is a _____.
a.
fulcrum
b.
lever
c.
ramp
d.
screw
e.
wedge
 

14. 

The rate at which work is done is called _____.
a.
efficiency
b.
effort time
c.
force
d.
power
e.
resistance time
 

15. 

The work output of a machine divided by the work input is the _____ of the machine.
a.
efficiency
c.
power
b.
effort
d.
resistance
 

16. 

The amount by which a machine multiplies an effort force is called the _____.
a.
efficiency factor
c.
mechanical advantage
b.
fulcrum
d.
resistance force
 

17. 

An inclined plane with one or two sloping sides forms a machine called a _____.
a.
pulley
b.
lever
c.
ramp
d.
screw
e.
wedge
 

18. 

An inclined plane wrapped around a cylinder post is a _____.
a.
block and tackle
b.
lever
c.
ramp
d.
screw
e.
wedge
 

19. 

A machine that changes only the direction of a force has a mechanical advantage of _____.
a.
100
b.
10
c.
5
d.
2
e.
1
 

20. 

A winding mountain road is an example of _____.
a.
a block and tackle
b.
a lever
c.
an inclined plane
d.
a wheel and axle
e.
a wedge
 

21. 

When two or more simple machines work together, they are called _____.
a.
a compound machine
b.
an effort machine
c.
a screw
d.
a simple machine
e.
a wedge
 

22. 

The unit of power is the _____.
a.
joule
b.
MA
c.
m/s
d.
second
e.
watt
 

23. 

A lever with a mechanical advantage greater than 1 is used to _____.
a.
change direction
b.
increase distance
c.
increase force
d.
increase force and change direction
e.
decrease force
 

24. 

Three of the following simple machines are basically the same. The one that does NOT belong with the group is the _____.
a.
lever
c.
wedge
b.
pulley
d.
wheel and axle
 

25. 

An arrangement of pulleys designed to reduce the effort force is called a _____.
a.
block and tackle
b.
fixed pulley
c.
movable pulley
d.
simple pulley
e.
screw
 

26. 

Two simple machines that are part of a bicycle are _____.
a.
a gear and a wheel and axle
b.
an inclined plane and a lever
c.
an inclined plane and a wedge
d.
a screw and an inclined plane
e.
a wheel and axle and an inclined plane
 

Matching
 
 
Match each item with the correct statement below.
a.
effort force
e.
simple machine
b.
compound machine
f.
resistance force
c.
prosthesis
g.
efficiency
d.
mechanical advantage
 

27. 

artificial replacement part
 

28. 

ratio of resistance force to effort force
 

29. 

device that does work with only one movement
 

30. 

the force you apply to a simple machine
 

31. 

device made up of more than one simple machine
 

Problem
 
 
chapter_7_review_files/i0390000.jpg
 

32. 

Find the ideal mechanical advantage of the second-class lever shown in Figure 7-1.
 

33. 

What would be the ideal mechanical advantage of the lever in Figure 7-1 if the fulcrum were moved 2 m to the right?
 
 
chapter_7_review_files/i0420000.jpg

Figure 7-2A shows a block being moved up an inclined plane. Figure 7-2B shows the same block being lifted the same distance by a fixed pulley. (Ignore friction.)
 

34. 

In Figure 7-2A, what is the ideal mechanical advantage of the inclined plane?
 

35. 

In Figure 7-2A, what is the weight of the block?
 

36. 

In Figure 7-2A, what is the amount of work required to move the block along the total length of the inclined plane?
 

37. 

If the weight of the block in Figure 7-2A were doubled, how much work would be required to move the block along the total length of the inclined plane?
 

38. 

If the efficiency of the fixed pulley in Figure 7-2B were 100%, how much force would be required in using the pulley to lift the block off the ground?
 

39. 

Calculate the ideal mechanical advantage of a lever that is 6-m long and that has a 4.5-m effort arm.
 

40. 

A 24-cm long screwdriver is used as a lever to open a paint can. If the fulcrum is 0.5 cm away from the end of the screwdriver, what is the screwdriver's ideal mechanical advantage?
 



 
Check Your Work     Reset Help