SNHU GPA Calculator
Calculate your Southern New Hampshire University Grade Point Average
A
A-
B+
B
B-
C+
C
C-
D+
D
F
Your Estimated GPA:
0.00
Understanding the SNHU Grading Scale
At Southern New Hampshire University, your Grade Point Average (GPA) is calculated on a 4.0 scale. Every letter grade you earn in your courses corresponds to a specific number of quality points. This calculator helps you determine both your semester GPA and your cumulative GPA by incorporating your existing credits and grades.
SNHU Grade Point Values
| Letter Grade | Point Value | Percentage Range |
|---|---|---|
| A | 4.00 | 93-100% |
| A- | 3.67 | 90-92% |
| B+ | 3.33 | 87-89% |
| B | 3.00 | 83-86% |
| B- | 2.67 | 80-82% |
| C+ | 2.33 | 77-79% |
| C | 2.00 | 73-76% |
| F | 0.00 | 0-59% |
How to Calculate SNHU GPA Manually
To calculate your GPA, use the following steps:
- Multiply the numerical grade point for each course by the number of credit hours for that course. This gives you your Quality Points.
- Add up the total number of quality points for all courses.
- Divide the total quality points by the total number of credit hours attempted.
Example:
Course 1: Grade A (4.0) x 3 Credits = 12.0 points
Course 2: Grade B (3.0) x 3 Credits = 9.0 points
Total Points: 21.0 / Total Credits: 6 = 3.50 GPA
Course 1: Grade A (4.0) x 3 Credits = 12.0 points
Course 2: Grade B (3.0) x 3 Credits = 9.0 points
Total Points: 21.0 / Total Credits: 6 = 3.50 GPA
Academic Standing and Honor Roll
Keeping a high GPA is important for several reasons at SNHU:
- President's List: Awarded to students with a semester GPA of 3.700 or higher.
- Dean's List: Awarded to students with a semester GPA between 3.500 and 3.699.
- Satisfactory Academic Progress (SAP): Most programs require maintaining a cumulative GPA of at least 2.0 to remain in good standing.
' +
" +
'
' +
'' +
" +
'AA-B+' +
'BB-C+' +
'CC-D+' +
'DF' +
'
' +
'' +
" +
'
';
container.appendChild(newRow);
}
function calculateSNHUGPA() {
var currentGPA = parseFloat(document.getElementById('current-gpa').value);
var currentCredits = parseFloat(document.getElementById('current-credits').value);
var grades = document.getElementsByClassName('course-grade');
var credits = document.getElementsByClassName('course-credits');
var semesterQualityPoints = 0;
var semesterCredits = 0;
for (var i = 0; i 0) {
semesterQualityPoints += (gradeValue * creditValue);
semesterCredits += creditValue;
}
}
var finalGPA = 0;
var totalCredits = semesterCredits;
var totalPoints = semesterQualityPoints;
// Logic for Cumulative GPA if input is provided
if (!isNaN(currentGPA) && !isNaN(currentCredits) && currentCredits >= 0) {
var existingPoints = currentGPA * currentCredits;
totalPoints += existingPoints;
totalCredits += currentCredits;
}
if (totalCredits > 0) {
finalGPA = totalPoints / totalCredits;
document.getElementById('gpa-output').innerText = finalGPA.toFixed(2);
document.getElementById('stats-output').innerText = "Total Credits: " + totalCredits + " | Semester Credits: " + semesterCredits;
document.getElementById('gpa-result-box').style.display = 'block';
// Scroll to result
document.getElementById('gpa-result-box').scrollIntoView({ behavior: 'smooth', block: 'nearest' });
} else {
alert("Please enter credit hours for at least one course.");
}
}
function resetGPACalculator() {
document.getElementById('current-gpa').value = ";
document.getElementById('current-credits').value = ";
var container = document.getElementById('course-list');
container.innerHTML = '' +
'' +
'
';
document.getElementById('gpa-result-box').style.display = 'none';
}
AA-B+BB-C+CC-D+DF
' +
'' +
'