'; for (var i = 0; i < quiz.length; i++) { if (quiz[i].isCorrect()) correct++; } var score = Math.round((correct / quiz.length) * 100); correctPage += 'Score: ' + score + ' %'; if (correct < quiz.length) { correctPage += ifWrong; for (var i = 0; i < quiz.length; i++) { if (!quiz[i].isCorrect()) { correctPage += (i + 1) + '. ' + quiz[i].userChoices[quiz[i].correctAnswer] + '
'; } } } else correctPage += ifAced; correctPage += ''; correctwin = window.open ('', '', 'height=300,width=300,scrollbars=yes'); if (correctwin.opener == null) correctwin.opener = window; correctwin.location = 'javascript:opener.correctPage'; } // Message to display if quiz is aced. var ifAced = "

Well done, all the answers are correct!

"; // Message to display if any are wrong. var ifWrong = "

Here are the correct answers to the questions you got wrong:

"; // Create four question objects... quiz = new makeArray(10); quiz[0] = new makeQuestion("Halicarnassus was the...", 0, //Wich answer is right. 0= first, 1= second etc. "capitol of a little kingdom", "little city in Greece", "village near Olympus"); quiz[1] = new makeQuestion("How many years did queen Artemisia ruled the territory near Halicarnassus?", 2, "16 years", "31 years", "24 years"); quiz[2] = new makeQuestion("When Mausolus died?", 2, "256 B.C.", "3 B.C.", "353 B.C. "); quiz[3] = new makeQuestion("Who decided to build a temple?", 1, "The ruler of Greece", "Artemisia", "Persians"); quiz[4] = new makeQuestion("Who was the main artist to build up a mausoleum?", 0, "Scopas", "Bryaxis", "Timotheus"); quiz[5] = new makeQuestion("How many tomp columns are in mausoleum?", 2, "24", "63", "36"); quiz[6] = new makeQuestion("To where were Artemisa and Mausolus buried?", 0, "in the yet unfinished tomb", "near the mausoleum", "to cemetry"); quiz[7] = new makeQuestion("How was the building damaged?", 0, "by earthquake", "by pirates", "by animals"); quiz[8] = new makeQuestion("Who was sent in 1846 to search more remains?", 1, "Eric Hireds", "Charles Thomas Newton ", "Mark Jones"); quiz[9] = new makeQuestion("What were the main discovers of Newton?", 2, "the main door of mausoleum", "clothes", "the statues of Mausolus and Artemisia "); // --> Take this quiz to test your knowledge of the Mausoleum at Halicarnassos!

Correct Quiz

Click here to start again