Writen Test For job preparation by infinite ilm | Test no 4

General Knowledge MCQ Test
1. Which country is known as the “Land of the Rising Sun”?
2. What is the capital of Australia?
3. Which planet is known as the “Red Planet”?
4. Who painted the Mona Lisa?
5. What is the largest ocean on Earth?
6. Which country hosted the 2022 FIFA World Cup?
7. What is the chemical symbol for gold?
8. Which of these is NOT a programming language?
9. Who is the current Prime Minister of Pakistan (as of 2023)?
10. Which continent is the most populous?
11. What is the currency of Japan?
12. Which organ pumps blood throughout the human body?
13. Mount Everest is located in which mountain range?
14. Which of these is the largest desert in the world?
15. Who wrote “Romeo and Juliet”?
16. What is the largest mammal in the world?
17. Which country has the most time zones?
18. What is the main component of the Sun?
19. Which of these is NOT one of the Seven Wonders of the Ancient World?
20. What is the largest organ of the human body?
Your Score: 0/20
.gk-quiz {
max-width: 750px;
margin: 0 auto;
font-family: ‘Segoe UI’, Tahoma, Geneva, Verdana, sans-serif;
padding: 25px;
background: #fff;
border-radius: 10px;
box-shadow: 0 0 25px rgba(0,0,0,0.1);
}
.gk-quiz h2 {
text-align: center;
color: #2c3e50;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 2px solid #27ae60;
}
.quiz-question {
margin-bottom: 25px;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
border-left: 4px solid #27ae60;
transition: all 0.3s ease;
}
.quiz-question:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(39, 174, 96, 0.2);
}
.quiz-question p {
font-weight: 600;
margin-bottom: 15px;
color: #2c3e50;
font-size: 16px;
}
.quiz-question label {
display: block;
padding: 12px 15px;
margin: 8px 0;
background: #fff;
border-radius: 6px;
cursor: pointer;
transition: all 0.2s ease;
border: 1px solid #ddd;
font-size: 15px;
}
.quiz-question label:hover {
background: #e8f8f0;
border-color: #27ae60;
}
.quiz-question input[type=”radio”] {
margin-right: 12px;
transform: scale(1.1);
}
.quiz-actions {
text-align: center;
margin: 35px 0;
}
.check-answers {
background: #27ae60;
color: white;
border: none;
padding: 14px 35px;
font-size: 17px;
border-radius: 50px;
cursor: pointer;
transition: all 0.3s ease;
font-weight: 600;
box-shadow: 0 4px 10px rgba(39, 174, 96, 0.4);
}
.check-answers:hover {
background: #219653;
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(39, 174, 96, 0.5);
}
.check-answers:active {
transform: translateY(0);
}
.quiz-results {
display: none;
margin-top: 35px;
padding: 25px;
background: #f8f9fa;
border-radius: 8px;
border-top: 4px solid #e74c3c;
}
.quiz-results h3 {
color: #2c3e50;
margin-bottom: 20px;
font-size: 20px;
}
.quiz-results .score {
color: #e74c3c;
font-size: 28px;
}
.answer-key {
background: #fff;
padding: 20px;
border-radius: 6px;
border: 1px solid #eee;
}
.answer-key h4 {
color: #2c3e50;
margin-top: 0;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
}
.answer-key p {
padding: 10px 0;
margin: 0;
border-bottom: 1px dashed #eee;
font-size: 15px;
}
.answer-key p:last-child {
border-bottom: none;
}
/* Answer feedback colors */
.correct-answer {
color: #27ae60;
font-weight: bold;
background-color: #e8f8f0;
}
.wrong-answer {
color: #e74c3c;
background-color: #fdedec;
}
.show-answer {
color: #3498db;
font-weight: bold;
background-color: #ebf5fb;
}
@media (max-width: 600px) {
.gk-quiz {
padding: 15px;
}
.quiz-question {
padding: 15px;
}
}
document.addEventListener(‘DOMContentLoaded’, function() {
const correctAnswers = {
q1: {value: “b”, text: “Japan”},
q2: {value: “c”, text: “Canberra”},
q3: {value: “b”, text: “Mars”},
q4: {value: “c”, text: “Leonardo da Vinci”},
q5: {value: “d”, text: “Pacific Ocean”},
q6: {value: “b”, text: “Qatar”},
q7: {value: “c”, text: “Au”},
q8: {value: “d”, text: “Puma”},
q9: {value: “b”, text: “Shahbaz Sharif”},
q10: {value: “c”, text: “Asia”},
q11: {value: “b”, text: “Yen”},
q12: {value: “c”, text: “Heart”},
q13: {value: “c”, text: “Himalayas”},
q14: {value: “d”, text: “Antarctic”},
q15: {value: “b”, text: “William Shakespeare”},
q16: {value: “b”, text: “Blue Whale”},
q17: {value: “d”, text: “France (12 time zones including overseas territories)”},
q18: {value: “b”, text: “Hydrogen”},
q19: {value: “c”, text: “Colosseum”},
q20: {value: “c”, text: “Skin”}
};
document.querySelector(‘.check-answers’).addEventListener(‘click’, function() {
let score = 0;
let answerKeyHTML = ‘
Answer Key:
‘;
for(let i = 1; i {
label.classList.remove(‘correct-answer’, ‘wrong-answer’, ‘show-answer’);
});
if(selectedOption) {
const userAnswer = selectedOption.value;
const correctAnswer = correctAnswers[questionName].value;
if(userAnswer === correctAnswer) {
score++;
selectedOption.parentElement.classList.add(‘correct-answer’);
} else {
selectedOption.parentElement.classList.add(‘wrong-answer’);
}
}
// Highlight correct answer
const correctOption = questionElement.querySelector(`input[value=”${correctAnswers[questionName].value}”]`);
correctOption.parentElement.classList.add(‘show-answer’);
// Add to answer key
answerKeyHTML += `
Q${i}:
(${correctAnswers[questionName].value}) ${correctAnswers[questionName].text}
`;
}
// Show results
document.querySelector(‘.score’).textContent = score;
document.querySelector(‘.answer-key’).innerHTML = answerKeyHTML;
document.querySelector(‘.quiz-results’).style.display = ‘block’;
// Scroll to results
document.querySelector(‘.quiz-results’).scrollIntoView({ behavior: ‘smooth’ });
});
});
