POST-UTME Aggregate Calculator
Post-UTME Score: N/A
Aggregate Score: N/A
function calculateAggregate() { const jambScore = document.getElementById('jambScore').value; const postUtmeQuestionsCorrect = document.getElementById('postUtmeScore').value;
if (!jambScore || !postUtmeQuestionsCorrect) { alert('Please fill in both fields.'); return; }
const postUtmeScore = postUtmeQuestionsCorrect * 2.5; const jambAggregate = jambScore / 8; const aggregateScore = jambAggregate + postUtmeScore;
document.getElementById('postUtmeResult').textContent = (postUtmeScore).toFixed(2);
document.getElementById('aggregateScore').textContent = aggregateScore.toFixed(2); }