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

ch 24



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

 1. 

Interference effects observed in the early 1800's were instrumental in supporting a concept of the existence of which property of light?
a.
polarization
b.
particle nature
c.
wave nature
d.
electromagnetic character
e.
finite speed of propagation
 

 2. 

If a wave from one slit of a Young's double-slit set-up arrives at a point on the screen one wavelength behind the wave from the other slit, what is observed at that point?
a.
dark fringe
b.
bright fringe
c.
multi-colored fringe
d.
gray fringe, neither dark nor bright
 

 3. 

A Young's double slit has a slit separation of 2.50 ´ 10-5 m on which a monochromatic light beam is directed. The resultant bright fringes on a screen 1.00 m from the double slit are separated by 2.30 ´ 10-2 m. What is the wavelength of this beam? (1 nm = 10-9 m)
a.
373 nm
b.
454 nm
c.
575 nm
d.
667 nm
e.
759 nm
 

 4. 

In order to produce a sustained interference pattern by light waves from multiple sources, which of the following conditions must be met?
a.
sources are coherent
b.
sources are monochromatic
c.
Both choices above are valid.
d.
None of the choices above are valid.
 

 5. 

In a Young's double-slit interference apparatus, by what factor is the distance between adjacent light and dark fringes changed when the separation between slits is doubled?
a.
1/4
b.
1/2
c.
1
d.
2
e.
4
 

 6. 

A Young's double-slit apparatus is set up where a screen is positioned 0.80 m from the double slits. If the distance between alternating bright fringes is 0.95 cm and the light source has a wavelength of 580 nm, what is the separation of the double slits? (1 nm = 10-9 m)
a.
2.8 ´ 10-5 m
b.
4.9 ´ 10-5 m
c.
5.6 ´ 10-5 m
d.
6.0 ´ 10-5 m
e.
7.4 ´ 10-5 m
 

 7. 

Two beams of coherent light are shining on the same piece of white paper. With respect to the crests and troughs of such waves, darkness will occur on the paper where:
a.
the crest from one wave overlaps with the crest from the other.
b.
the crest from one wave overlaps with the trough from the other.
c.
the troughs from both waves overlap.
d.
darkness cannot occur as the two waves are coherent.
e.
darkness occurs anyway.
 

 8. 

After light from a source passes through two slits, a first order bright spot is seen on the wall at point P. Which distance is equal to the wavelength of the light?

pretest_ch-_24_files/i0090000.jpg
a.
the extra distance one beam must travel
b.
the distance between beams as they leave the slit
c.
the distance of point P from the central point of the interference pattern
d.
the distance between slits
e.
one-half of the distance between slits
 

 9. 

That light can undergo interference is evidence that it:
a.
has electric properties.
b.
is made of corpuscles.
c.
behaves like a wave.
d.
has a phase of 180º.
e.
behaves like a transversal wave.
 

 10. 

In a Young's experiment, the paths from the slits to a point on the screen differ in length causing destructive interference at the point. Which of the following path difference would cause this destructive interference?
a.
5l/2
b.
3l/4
c.
4l
d.
7l/4
e.
none of the above
 

 11. 

The blue tint of a coated camera lens is largely caused by what effects?
a.
diffraction
b.
refraction
c.
polarization
d.
interference
e.
absorption
 

 12. 

A silicon monoxide thin film (n = 1.45) of thickness 90.0 nm is applied to a camera lens made of glass (n = 1.55). This will result in a destructive interference for reflected light of what wavelength?
a.
720 nm
b.
558 nm
c.
522 nm
d.
450 nm
e.
376 nm
 

 13. 

When light shines on a lens placed on a flat piece of glass, interference occurs which causes circular fringes called Newton's rings. The two beams that are interfering come:
a.
from the top and bottom surface of the lens.
b.
from the top surface of the lens and the top surface of the piece of glass.
c.
from the bottom surface of the lens and the top surface of the piece of glass.
d.
from the top and bottom surface of the flat piece of glass.
e.
from the top surface of the lens and the bottom surface of the piece of glass.
 

 14. 

When light passes from a material with a high index of refraction into material with a low index of refraction:
a.
none of the light is reflected.
b.
some light is reflected without a change of phase.
c.
some light is reflected with a 180º change of phase.
d.
the light that is not reflected has a 180º change of phase.
e.
all the light has a 180º change of phase.
 

 15. 

Upon reflection, light undergoes a 180º phase change:
a.
always.
b.
if the incident medium has the higher index of refraction.
c.
if the incident medium has the lower index of refraction.
d.
whenever the incident angle is less than the critical angle.
e.
whenever the incident angle is more than the critical angle.
 

 16. 

A Fraunhofer diffraction pattern is created by monochromatic light shining through which of the following?
a.
single slit
b.
double slit
c.
triple slit
d.
more than 3 slits
e.
any number of slits
 

 17. 

Light of wavelength 610 nm is incident on a slit of width 0.20 mm and a diffraction pattern is produced on a screen that is 1.5 m from the slit. What is the distance of the second dark fringe from the center of the bright fringe? (1 nm = 10-9 m)
a.
0.68 cm
b.
0.92 cm
c.
1.2 cm
d.
1.4 cm
e.
1.7 cm
 

 18. 

A material is optically active if it:
a.
absorbs light passing through it.
b.
transmits all light passing through it.
c.
exhibits interference.
d.
rotates the plane of polarization of the light passing through it.
e.
changes the wavelength of the light passing through it.
 

 19. 

Unpolarized light is passed through polarizer 1. The light then goes though polarizer 2 with its plane of polarization at 45.0º to that of polarizer 1. Polarizer 3 is placed after polarizer 2. Polarizer 3 has its plane of polarization at 45º to the plane of polarization of polarizer 2 and at 90º to that of polarizer 1. What fraction of the intensity of the original light gets through the last polarizer?
a.
0.707
b.
0.500
c.
0.250
d.
0.125
e.
0.100
 

 20. 

LCD stands for:
a.
linearly collimated diffraction.
b.
longitudinally combined depolarization.
c.
liquid crystal display.
d.
lighted compact disk.
e.
lowest common denominator
 



 
Check Your Work     Reset Help