Snhu Gpa Calculator

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
A4.0093-100%
A-3.6790-92%
B+3.3387-89%
B3.0083-86%
B-2.6780-82%
C+2.3377-79%
C2.0073-76%
F0.000-59%

How to Calculate SNHU GPA Manually

To calculate your GPA, use the following steps:

  1. Multiply the numerical grade point for each course by the number of credit hours for that course. This gives you your Quality Points.
  2. Add up the total number of quality points for all courses.
  3. 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

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.
function addCourseRow() { var container = document.getElementById('course-list'); var newRow = document.createElement('div'); newRow.className = 'course-row'; newRow.style.display = 'flex'; newRow.style.gap = '10px'; newRow.style.marginBottom = '10px'; newRow.style.alignItems = 'flex-end'; newRow.innerHTML = '
' + " + '
' + '
' + " + '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 = '
' + '
' + '
AA-B+BB-C+CC-D+DF
' + '
' + '
'; document.getElementById('gpa-result-box').style.display = 'none'; }

Leave a Reply

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