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

Pakistan Geography MCQs
1. Which is the highest mountain peak in Pakistan?
2. Which river is known as the “Lifeline of Pakistan”?
3. Which desert is located in Sindh province?
4. Which pass connects Pakistan with China?
5. What is the total area of Pakistan (approximately)?
6. Which province of Pakistan has the longest coastline?
7. Which is the largest natural lake in Pakistan?
8. Which mountain range separates Pakistan from Afghanistan?
9. Which is the northernmost district of Pakistan?
10. Which canal is the largest irrigation canal in the world?
11. Which national park is located in Sindh?
12. Which is the hottest place in Pakistan?
13. Which glacier is the largest outside polar regions?
14. Which dam is built on the River Jhelum?
15. Which valley is known as the “Fruit Basket of Pakistan”?
16. Which is the easternmost river of Pakistan?
17. Which plateau is located in Balochistan?
18. Which city is called the “Gateway to China”?
19. Which is the largest district of Pakistan by area?
20. Which river flows through Islamabad?
Your Score: 0/20
.pak-geo-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);
}
.pak-geo-quiz h2 {
text-align: center;
color: #2c3e50;
margin-bottom: 30px;
padding-bottom: 15px;
border-bottom: 2px solid #3498db;
}
.quiz-question {
margin-bottom: 25px;
padding: 20px;
background: #f8f9fa;
border-radius: 8px;
border-left: 4px solid #3498db;
transition: all 0.3s ease;
}
.quiz-question:hover {
transform: translateY(-3px);
box-shadow: 0 5px 15px rgba(52, 152, 219, 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: #ebf5fb;
border-color: #3498db;
}
.quiz-question input[type=”radio”] {
margin-right: 12px;
transform: scale(1.1);
}
.quiz-actions {
text-align: center;
margin: 35px 0;
}
.check-answers {
background: #3498db;
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(52, 152, 219, 0.4);
}
.check-answers:hover {
background: #2980b9;
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(52, 152, 219, 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) {
.pak-geo-quiz {
padding: 15px;
}
.quiz-question {
padding: 15px;
}
}
document.addEventListener(‘DOMContentLoaded’, function() {
const correctAnswers = {
q1: {value: “b”, text: “K2 (Godwin Austin)”},
q2: {value: “c”, text: “Indus”},
q3: {value: “a”, text: “Thar Desert”},
q4: {value: “c”, text: “Khunjerab Pass”},
q5: {value: “b”, text: “796,096 sq km”},
q6: {value: “c”, text: “Balochistan”},
q7: {value: “b”, text: “Manchar Lake”},
q8: {value: “c”, text: “Hindu Kush”},
q9: {value: “a”, text: “Chitral”},
q10: {value: “c”, text: “Lloyd Barrage Canal”},
q11: {value: “c”, text: “Kirthar National Park”},
q12: {value: “a”, text: “Jacobabad”},
q13: {value: “c”, text: “Siachen Glacier”},
q14: {value: “b”, text: “Mangla Dam”},
q15: {value: “c”, text: “Hunza Valley”},
q16: {value: “d”, text: “Sutlej”},
q17: {value: “c”, text: “Balochistan Plateau”},
q18: {value: “b”, text: “Gilgit”},
q19: {value: “a”, text: “Chagai”},
q20: {value: “d”, text: “Haro”}
};
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’ });
});
});
