If Clause - Type one Conditionals Exercise
Aşağıda verilen cümlecikleri, kutulara uygun şekilde yazınız.
<!-- var numQues = 10; var answers = new Array(10); answers[0] = "you will be in trouble"; answers[1] = "you will have to sit at the table all night"; answers[2] = "you will miss a fun time"; answers[3] = "you will have to buy a new one"; answers[4] = "I will buy you a different drink"; answers[5] = "I will let you know"; answers[6] = "the team will be so happy"; answers[7] = "I will pay for your ticket"; answers[8] = "we will feel well-rested"; answers[9] = "I will stay up all night working on it"; function getScore(form) { var score = 0; for (i=0; i<numQues; i++) { var answer = form.elements[i].value; var answer_length = answer.length; var last_char = answer.charAt(answer_length-1); if (last_char == " ") { form.elements[i].value = (answer.substring(0, answer_length-1)) ; i=i-1; } } for (i=0; i<numQues; i++) { if (form.elements[i].value.toUpperCase() == answers[i].toUpperCase()) { score++; } } score = Math.round(score/numQues*100); form.percentage.value = score + "%"; var correctAnswers = ""; for (i=1; i<=numQues; i++) { correctAnswers += i + ". " + answers[i-1] + "\r\n"; } form.solutions.value = correctAnswers; } // --> Word Bank:
you will have to sit at the table all night. you will miss a fun time. you will be in trouble. I will let you know. I will buy you a different drink. I will stay up all night working on it. the team will be so happy. we will feel well-rested. you will have to buy a new one. I will pay for your ticket.
1. If you don't come here right now, .
2. If you don't finish your dinner, .
3. If you can't come to the party, .
4. If the computer doesn't work, .
5. If you don't like coffee, .
6. If I find your cell phone, .
7. If we win the game, .
8. If you want to go to the movies with me, .
9. If we go to bed early, .
10. If the teacher gives us homework, .
Score = Correct answers:













