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

Covalent Bonding



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

1. 

A mutual electrical attraction between the nuclei and valence electrons of different atoms that binds the atoms together is called a(n)
a.
dipole.
c.
chemical bond.
b.
Lewis structure.
d.
London force.
 

2. 

The electrons involved in the formation of a chemical bond are called
a.
dipoles.
c.
Lewis electrons.
b.
s electrons.
d.
valence electrons.
 

3. 

As atoms bond with each other, they
a.
increase their potential energy, thus creating less-stable arrangements of matter.
b.
decrease their potential energy, thus creating less-stable arrangements of matter.
c.
increase their potential energy, thus creating more-stable arrangements of matter.
d.
decrease their potential energy, thus creating more-stable arrangements of matter.
 

4. 

The chemical bond formed when two atoms share electrons is called a(n)
a.
ionic bond.
c.
Lewis structure.
b.
orbital bond.
d.
covalent bond.
 

5. 

If two covalently bonded atoms are identical, the bond is
a.
nonpolar covalent.
c.
nonionic.
b.
polar covalent.
d.
coordinate covalent.
 

6. 

If the atoms that share electrons have an unequal attraction for the electrons, the bond is called
a.
nonpolar.
c.
ionic.
b.
polar.
d.
dipolar.
 

7. 

Most chemical bonds are
a.
purely ionic.
c.
partly ionic and partly covalent.
b.
purely covalent.
d.
metallic.
 

8. 

Nonpolar covalent bonds are not common because
a.
one atom usually attracts electrons more strongly than the other.
b.
ions always form when atoms join.
c.
the electrons usually remain equally distant from both atoms.
d.
dipoles are rare in nature.
 

9. 

Bonds that are between 5% and 50% ionic are considered
a.
ionic.
c.
polar covalent.
b.
pure covalent.
d.
nonpolar covalent.
 

10. 

Bonds that are more than 50% ionic are considered
a.
polyatomic.
c.
ionic.
b.
polar covalent.
d.
nonpolar covalent.
 

11. 

A bond that is less than 5% ionic is considered
a.
polar covalent.
c.
nonpolar covalent.
b.
ionic.
d.
metallic.
 

12. 

In which of these compounds is the bond between the atoms NOT a nonpolar covalent bond?
a.
Cl2
c.
HCl
b.
H2
d.
O2
 

13. 

A neutral group of atoms held together by covalent bonds is a
a.
molecular formula.
c.
compound.
b.
chemical formula.
d.
molecule.
 

14. 

A ____ shows the types and numbers of atoms joined in a single molecule of a molecular compound.
a.
molecular formula
c.
covalent bond
b.
chemical formula
d.
ionic bond
 

15. 

In a molecule of fluorine, the two shared electrons give each fluorine atom ____ electron(s) in the outer energy level.
a.
1
c.
8
b.
2
d.
32
 

16. 

The octet rule states that chemical compounds tend to form so that each atom has an octet of electrons in
a.
its highest occupied energy level.
c.
its d orbitals.
b.
the 1s orbital.
d.
its p orbitals.
 

17. 

In drawing a Lewis structure, each nonmetal atom except hydrogen should be surrounded by
a.
2 electrons.
c.
8 electrons.
b.
4 electrons.
d.
10 electrons.
 

18. 

In drawing a Lewis structure, the central atom is the
a.
atom with the greatest mass.
c.
atom with the fewest electrons.
b.
atom with the highest atomic number.
d.
least electronegative atom.
 

19. 

To draw a Lewis structure, one must know the
a.
number of valence electrons in each atom.
b.
atomic mass of each atom.
c.
bond length of each atom.
d.
ionization energy of each atom.
 

20. 

The substance whose Lewis structure shows three covalent bonds is
a.
H2O.
c.
NH3.
b.
CH2Cl2.
d.
CCl4.
 
 
covalentbondingstud_files/i0220000.jpgcovalentbondingstud_files/i0220001.jpg
 

21. 

What is the Lewis structure for hydrogen chloride, HCl?
a.
A
c.
C
b.
B
d.
D
 
 
covalentbondingstud_files/i0240000.jpg
 

22. 

What is the Lewis structure for carbon tetraiodide, which contains one carbon atom and four iodine atoms?
a.
A
c.
C
b.
B
d.
D
 

23. 

A shorthand representation of the composition of a substance using atomic symbols and numerical subscripts is called a(n)
a.
Lewis structure.
c.
polyatomic ion.
b.
chemical formula.
d.
multiple bond.
 

24. 

A formula that shows the types and numbers of atoms combined in a single molecule is called a(n)
a.
molecular formula.
c.
Lewis structure.
b.
ionic formula.
d.
covalent formula.
 

25. 

Compared with ionic compounds, molecular compounds
a.
have higher boiling points.
c.
have lower melting points.
b.
are brittle.
d.
are harder.
 

26. 

A compound that vaporizes readily at room temperature is most likely to be a(n)
a.
molecular compound.
c.
metal.
b.
ionic compound.
d.
brittle compound.
 

27. 

The properties of both ionic and molecular compounds are related to the
a.
lattice energies of the compounds.
b.
strengths of attraction between the particles in the compounds.
c.
number of covalent bonds each contains.
d.
mobile electrons that they contain.
 

28. 

In the electron-sea model of a metallic bond,
a.
electrons are stationary.
b.
electrons are bonded to particular positive ions.
c.
some electrons are valence electrons and some are not.
d.
mobile electrons are shared by all the atoms.
 

29. 

The electron-sea model of bonding represents
a.
covalent bonding.
c.
ionic bonding.
b.
metallic bonding.
d.
hydrogen bonding.
 

30. 

To appear shiny, a material must be able to
a.
form crystals.
b.
absorb and re-emit light of many wavelengths.
c.
absorb light and change it all to heat.
d.
change light to electricity.
 

31. 

The shiny appearance of a metal is most closely related to the metal's
a.
electron sea.
c.
brittle crystalline structure.
b.
covalent bonds.
d.
positive ions.
 

32. 

Because metallic bonds permit one plane of ions to slide past another without breaking bonds, metals are
a.
brittle.
c.
nonreflective.
b.
malleable.
d.
poor conductors of electricity.
 

33. 

Malleability and ductility are characteristic of substances with
a.
covalent bonds.
c.
Lewis structures.
b.
ionic bonds.
d.
metallic bonds.
 

34. 

The model for predicting the shape of a molecule that is based on the repulsion of electrons for each other is called
a.
hybridization.
c.
London force model.
b.
Lewis structure.
d.
VSEPR theory.
 

35. 

According to VSEPR theory, an AB2 molecule is
a.
trigonal planar.
c.
linear.
b.
tetrahedral.
d.
octahedral.
 

36. 

VSEPR theory is a model for predicting
a.
the strength of metallic bonds.
c.
lattice energy values.
b.
the shape of molecules.
d.
ionization energy.
 

37. 

The concept that electrostatic repulsion between electron pairs surrounding an atom causes these pairs to be separated as far as possible is the foundation of
a.
VSEPR theory.
c.
the electron-sea model.
b.
the hybridization model.
d.
Lewis theory.
 

38. 

According to VSEPR theory, the shape of an AB3 molecule is
a.
trigonal planar.
c.
linear.
b.
tetrahedral.
d.
bent.
 

39. 

According to VSEPR theory, the structure of the ammonia molecule, NH3, is
a.
linear.
c.
pyramidal.
b.
bent.
d.
tetrahedral.
 

40. 

Use VSEPR theory to predict the shape of the hydrogen chloride molecule, HCl.
a.
tetrahedral
c.
bent
b.
linear
d.
trigonal planar
 

41. 

Use VSEPR theory to predict the shape of the magnesium hydride molecule, MgH2.
a.
tetrahedral
c.
bent
b.
linear
d.
octahedral
 

42. 

Use VSEPR theory to predict the shape of the carbon tetraiodide molecule, CI4.
a.
tetrahedral
c.
bent
b.
linear
d.
trigonal planar
 

43. 

Use VSEPR theory to predict the shape of the hydrogen sulfide molecule, H2S.
a.
tetrahedral
c.
bent
b.
linear
d.
octahedral
 

44. 

Use VSEPR theory to predict the shape of carbon dioxide, CO2.
a.
tetrahedral
c.
bent
b.
linear
d.
octahedral
 

45. 

A polar molecule contains
a.
ions.
b.
a region of positive charge and a region of negative charge.
c.
only London forces.
d.
no bonds.
 



 
Check Your Work     Reset Help