"); 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("
Hosted by www.Geocities.ws

"); 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 (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) != "http://es.geocities.com/") 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: 
 

pop9



Problem
 
 
Find the mistakes with the underlined words, and correct them on the line provided below. Not all of the sentences have mistakes. If there are no mistakes, rewrite the sentence on the line provided.

EXAMPLES:
She must to leave early.
 
   She must leave early   .
 
She needs to leave early.
 
   She needs to leave early   .
 

1. 

She can't English speak.
_________________________________________________________________________.
 

2. 

They shouldn't to watch TV.
_________________________________________________________________________.
 
 
Fill in the first blank with to or nothing Ø. Then complete the negative form in the second blank.

EXAMPLES:
I'm afraid    to    walk alone at night.    I'm not afraid to walk    alone during the day.
  
 
I can    Ø    help you on Friday. I    can't    help you on Sunday.
 

3. 

I have _________________ work on Fridays. I _________________ work on Sundays.
 

4. 

It's necessary _________________ study English. It _________________ study French.
 
 
Change each sentence into a question beginning with the word provided on the line.

EXAMPLES:
I need to go to the post office.
 
   Why do you need to go to the post office?   
 
They should leave.
 
   When should they leave?   
 

5. 

She'd like to learn Spanish.
When ____________________________________________________________________
 
 
Fill in each blank with can or can't to tell about your abilities.

EXAMPLE:
I        can't        play the piano.
 

6. 

I ___________ run fast.
 

7. 

I ___________ swim.
 

8. 

I ___________ ride a bicycle.
 

9. 

I ___________ write with my left hand.
 
 
What should the person do in each of the following situations? Write a sentence of advice using should for each situation.

EXAMPLE:
He lost his wallet.  He should report it to the police.              
 

10. 

She has a cold. ________________________________________________
 

11. 

She wants a new dress. __________________________________________
 
 
What warning would you give a person in each of the following situations?

EXAMPLE:
The car is too expensive.  You shouldn't buy it.                      
 

12. 

The roads are covered with ice. ____________________________________
 
 
What can and can't students do in your class? Fill in the blanks.

EXAMPLE:
We         can't        listen to headphones.
 

13. 

We ____________ talk with our friends.
 
 
Complete each statement with an infinitive phrase.

EXAMPLE:
It isn't difficult to learn English.
 

14. 

It's easy ____________________________________________________________
 

15. 

It's dangerous _______________________________________________________
 
 
Fill in each blank with a verb to express what may or might happen or be true.

EXAMPLE:
It is cloudy today. It might         rain         this afternoon.
 

16. 

The baby is playing with a coin. She might _________________ it.
 

17. 

Kenny's forehead feels hot. He may _________________ a fever.
 
 
Fill in each blank with have to or don't have to to make true statements about your schedule. Remember that don't have to means not necessary to.

EXAMPLE:
I         have to         go to the post office today.
 

18. 

I _________________ meet someone today.
 
 
Unscramble these words to write statements.

EXAMPLE:
drive / she / can't
She can't drive.                                                                      
 

19. 

you / taking / will / be / notes
___________________________________________________________
 
 
Unscramble these words to make questions.

EXAMPLE:
drive / she / can't
Can't she drive?                                                                     
 

20. 

sing / Marianne / can
___________________________________________________________
 
 
Write what you would say in the following situations in your class.

EXAMPLES:
You want someone to spell a word for you.
Could you spell this, please?                                                 
 
You want to borrow some money.
May I borrow 5 dollars until tomorrow?                                
 

21. 

You want to borrow some paper from a classmate.
___________________________________________________________
 

22. 

You want to use someone's dictionary.
___________________________________________________________
 
 
Match the imperative statements with the statement that best describes its use.

A.
To give instructions
D.
To give a warning
B.
To make a request
E.
In polite conversation
C.
To make a command
F.
In impolite expression

EXAMPLE:
Wait for me!       B. To make a request     
 

23. 

Open the door. ___________________________________
 
 
Fill in each blank with an appropriate imperative verb (affirmative or negative) to give instructions on how to be a good language learner.

EXAMPLE:
                 Practice                     your pronunciation.
 

24. 

__________________________________ to your teacher.
 
 
Answer each question with an infinitive phrase to show purpose.

EXAMPLE:
Why did you buy a cell phone?
To call my friends.                                                                 
 

25. 

Why do people go to discos?
___________________________________________________________
 

26. 

Why did you go to the shopping mall?
___________________________________________________________
 

27. 

Why did you buy this textbook?
___________________________________________________________
 
 
Answer these questions with information about yourself and other people. Use the infinitive to show purpose. Write complete sentences.

EXAMPLE:
Why are you using eyeglasses?
I'm using eyeglasses to read better.                                        
 

28. 

Why do you think people go to other countries?
___________________________________________________________
 

29. 

What do you need a bag for?
___________________________________________________________
 
 
Choose the sentence with the correct form of the verb.

EXAMPLE:
Choose the sentence with the correct form of the verb.
 
a.     I love try on new clothes.
 
b.     I love to try on new clothes.
 
ANS: b
 

30. 

Choose the sentence with the correct form of the verb.
a.
My father doesn't want to go on a boat trip.
b.
My father doesn't want going on a boat trip.
 



 
Check Your Work     Reset Help
Hosted by www.Geocities.ws

1