
var pitanje=new Array()
pitanje[0]='I  would be very interested ___ for that job. <br> <br>a)  applying<br>b) working<br>c)  writing'
pitanje[1]=' The food here is quite good although the menu is quite ___. <br> <br> a) easy<br> b) fundamental  <br>c) basic'
pitanje[2]='It couldn\'t possibly have been me, I always shut doors ___. <br>  <br>a) still <br> b) hardly <br> c) quietly'
pitanje[3]='That\'s what people are always ___.  <br><br> a) said<br> b) telling <br> c) saying'
pitanje[4]=' ____us that story again!<br><br> a) Tell<br> b) Say<br> c) Says'
pitanje[5]='I\'m sorry you\'re not telling the truth, you were the last person to ___.<br><br> a) come home <br> b) come to home <br> c) come at home'
pitanje[6]='A person who comes third in the Olympic Games wins ___. <br><br> a) a brass medal <br> b) a bronze medal <br> c) a silver medal'
pitanje[7]='Which material is natural? <br><br> a) cotton <br> b) polyester <br> c) nylon'
pitanje[8]='It has a trunk and branches. <br><br> a) a tree <br> b) a tail <br> c) a tire'
pitanje[9]='It was one of those plays where the ___ moved at great speed. <br><br> a) acting <br> b)  action <br> c) act'
pitanje[10]='What does a composer write? <br><br> a) books <br> b) movie scripts <br> c) music'
var izborpitanja=Math.floor(Math.random()*(pitanje.length))
var odgovor = pitanje
function CC_Odgovor() {
odgovor[0] = "a) applying"
odgovor[1] = "c) basic!"
odgovor[2] = "c) quietly"
odgovor[3] = "c) saying"
odgovor[4] = "a) Tell!"
odgovor[5] = "a) come home"
odgovor[6] = "b) a bronze medal"
odgovor[7] = "a) cotton"
odgovor[8] = "a) a tree"
odgovor[9] = "b) action"
odgovor[10] = "c) music"
alert("Tačan odgovor je:\n" + odgovor[izborpitanja])
}
document.write("<div class=text>");
document.write(pitanje[izborpitanja])