Geography Grade 12 November 2024: Past Papers, Memorandums, and Online Practice Test






Geography P1 Online Test


Geography P1 Online Test

Time Remaining: 15:00

1. The synoptic weather map illustrates typical … conditions.


2. The surface from A to B is intensely heated because it is …


3. The urban area will experience … cloud cover with a/an … in precipitation than the rural area.



const interval = setInterval(() => { const minutes = Math.floor(timeRemaining / 60); const seconds = timeRemaining % 60; timerElement.textContent = `Time Remaining: ${minutes}:${seconds < 10 ? '0' + seconds : seconds}`; if (timeRemaining <= 0) { clearInterval(interval); alert('Time is up! Submitting your answers.'); submitQuiz(); } timeRemaining--; }, 1000); function submitQuiz() { clearInterval(interval); const answers = { q1: 'Z', q2: 'C', q3: 'A' }; let score = 0; const totalQuestions = Object.keys(answers).length; const form = document.getElementById('quiz-form'); const resultElement = document.getElementById('result'); const userAnswers = new FormData(form); let feedback = ""; for (let [question, correctAnswer] of Object.entries(answers)) { if (userAnswers.get(question) === correctAnswer) { score++; } else { feedback += `

Improve on Question ${question.slice(1)}: Refer to section A for concepts like weather conditions or urban and rural climate differences.

`; } }

resultElement.innerHTML = `

You scored ${score} out of ${totalQuestions}.

${feedback} `; }

Leave a Reply

Your email address will not be published. Required fields are marked *