December 2005 quiz
UGC NET English Test UGC NET English Test Enter your name: Start Test Submit Test Test Results const questions = [ { question: "Which literary movement is associated with the concept of 'stream of consciousness'?", options: ["Romanticism", "Modernism", "Realism", "Postmodernism"], answer: 1 }, { question: "Who is credited with coining the term 'The Lost Generation'?", options: ["Ernest Hemingway", "F. Scott Fitzgerald", "Gertrude Stein", "T.S. Eliot"], answer: 2 }, { question: "Which of these is NOT a characteristic of Postcolonial literature?", options: ["Exploration of cultural identity", "Emphasis on Western superiority", "Critique of colonial discourse", "Reclaiming of history and culture"], answer: 1 }, { question: "What is the primary function of a morpheme in linguistics?", options: ["To create sentences", "To form the smallest unit of meaning", "To determine word order", "To establish grammatical rules"], answer: 1 }, { question: "Which literary device involves the use of a part to represent the whole?", options: ["Metonymy", "Synecdoche", "Metaphor", "Simile"], answer: 1 }, { question: "Who wrote the essay 'A Room of One's Own'?", options: ["Jane Austen", "Virginia Woolf", "Charlotte Bronte", "Mary Shelley"], answer: 1 }, { question: "What is the term for a word that is spelled the same backwards and forwards?", options: ["Anagram", "Palindrome", "Homograph", "Acronym"], answer: 1 }, { question: "Which of these is an example of a bildungsroman?", options: ["Moby Dick", "Pride and Prejudice", "Great Expectations", "Hamlet"], answer: 2 }, { question: "What is the main difference between prescriptive and descriptive grammar?", options: ["One is for writing, the other for speaking", "One describes rules, the other describes usage", "One is formal, the other informal", "One is for native speakers, the other for learners"], answer: 1 }, { question: "Which poetic form consists of 14 lines with a specific rhyme scheme?", options: ["Haiku", "Limerick", "Sonnet", "Villanelle"], answer: 2 }, { question: "What is the term for words that sound the same but have different meanings and spellings?", options: ["Synonyms", "Antonyms", "Homophones", "Homographs"], answer: 2 }, { question: "Which literary movement emphasized reason, order, and rationality?", options: ["Romanticism", "Enlightenment", "Surrealism", "Expressionism"], answer: 1 }, { question: "What is the purpose of a thesis statement in an academic essay?", options: ["To summarize the entire essay", "To present the main argument or claim", "To introduce the topic", "To list all the points to be discussed"], answer: 1 }, { question: "Which of these is an example of an archetypal character?", options: ["The wise old man", "The corrupt politician", "The clumsy waiter", "The strict teacher"], answer: 0 }, { question: "What is the primary difference between denotation and connotation?", options: ["One is for nouns, the other for verbs", "One is literal meaning, the other is associated meaning", "One is for formal language, the other for informal", "One is written, the other is spoken"], answer: 1 } ]; function startTest() { const userName = document.getElementById('user-name').value; if (!userName) { alert('Please enter your name to start the test.'); return; } document.getElementById('name-input').classList.add('hidden'); document.getElementById('test-container').classList.remove('hidden'); const form = document.getElementById('test-form'); questions.forEach((q, index) => { const questionDiv = document.createElement('div'); questionDiv.classList.add('mb-6'); questionDiv.innerHTML = ` <p class="font-bold mb-2">${index + 1}. ${q.question}</p> ${q.options.map((option, i) => ` <div> <input type="radio" id="q${index}_${i}" name="q${index}" value="${i}" required> <label for="q${index}_${i}">${option}</label> </div> `).join('')} `; form.appendChild(questionDiv); }); } function submitTest() { const form = document.getElementById('test-form'); if (!form.checkValidity()) { alert('Please answer all questions before submitting.'); return; } const userName = document.getElementById('user-name').value; let score = 0; const userAnswers = new FormData(form); questions.forEach((q, index) => { const userAnswer = parseInt(userAnswers.get(`q${index}`)); if (userAnswer === q.answer) { score++; } }); document.getElementById('test-container').classList.add('hidden'); document.getElementById('results').classList.remove('hidden'); document.getElementById('user-score').textContent = `${userName}, your score is ${score} out of ${questions.length}.`; const correctAnswersDiv = document.getElementById('correct-answers'); questions.forEach((q, index) => { const p = document.createElement('p'); p.innerHTML = `<strong>Q${index + 1}:</strong> ${q.options[q.answer]}`; correctAnswersDiv.appendChild(p); }); }
The post December 2005 quiz first appeared on Ronald Hadrian.
Published on October 19, 2024 06:10
No comments have been added yet.


