diff --git a/infotainment.html b/infotainment.html index 7945709..88ff031 100644 --- a/infotainment.html +++ b/infotainment.html @@ -30,6 +30,8 @@ Hangman
Hangman + +
Quiz
Quiz diff --git a/infotainment/quizjavaScript/question.js b/infotainment/quizjavaScript/question.js index 1aab836..a3d91c6 100644 --- a/infotainment/quizjavaScript/question.js +++ b/infotainment/quizjavaScript/question.js @@ -105,10 +105,50 @@ let maharashtra = { ], "answer": "48" } + , { + "question": "Which of the following is the highest (tallest) dam in Maharashtra?", + "options": [ + "Koyna", + "Jayakwadi", + "Panshet", + "Warna" + ], + "answer": "Koyna" + } + , { + "question": "Who of the following was the first person from Maharashtra to be awarded the Bharat Ratna?", + "options": [ + "Dhondo Keshav Karve", + "Dr PandurangVaman Kane", + "Acharya Vinoba Bhave", + "Bhim Rao Ambedkar" + ], + "answer": "Dhondo Keshav Karve" + } + , { + "question": "In which city of Maharashtra is the National Institute of Virology located?", + "options": [ + "Mumbai", + "Pune", + "Nashik", + "Nagpur" + ], + "answer": "Pune" + } + , { + "question": "With how many state maharashtra has boundaries?", + "options": [ + "4", + "5", + "6", + "7" + ], + "answer": "6" + } ], "createdAt": "Wed, 01 May 2024 11:41:13 GMT", "timePerQuestion": "30", - "totalTime": "120", + "totalTime": "180", "type": "quiz" } diff --git a/infotainment/quizjavaScript/result.js b/infotainment/quizjavaScript/result.js index a6018af..a99c84f 100644 --- a/infotainment/quizjavaScript/result.js +++ b/infotainment/quizjavaScript/result.js @@ -9,7 +9,7 @@ window.addEventListener('load', () => { } else if (questionAnswersGiven <= 8) { id("feedback").innerHTML = "You are almost there try again"; } else { - id("feedback").innerHTML = "Congratulations You made it"; + id("feedback").innerHTML = "Congratulations. You made it"; } }); \ No newline at end of file