Understanding the University of Nebraska Omaha (UNO) GPA System
Calculating your Grade Point Average (GPA) at the University of Nebraska Omaha is essential for maintaining academic standing, keeping scholarships, and preparing for graduation. As a Maverick, you are evaluated on a 4.0 scale that incorporates plus and minus grades to provide a precise reflection of your academic performance.
The UNO Official Grading Scale
UNO uses a weighted scale for letter grades. Each letter grade corresponds to a specific number of quality points per credit hour. Below is the standard conversion used at UNO:
Letter Grade
Quality Points
Letter Grade
Quality Points
A / A+
4.00
C
2.00
A-
3.67
C-
1.67
B+
3.33
D+
1.33
B
3.00
D
1.00
B-
2.67
D-
0.67
C+
2.33
F
0.00
How to Calculate Your UNO GPA Manually
To calculate your semester GPA, follow these three steps:
Determine Quality Points: Multiply the points for your grade (e.g., 4.0 for an A) by the number of credit hours for that class.
Total Everything: Add up all the quality points for the semester and add up all the credit hours attempted.
Divide: Divide the total quality points by the total credit hours.
Example Calculation: If you take a 3-credit course and get an A (12 points) and a 4-credit course and get a B (12 points), your total points are 24. Divide 24 by 7 credits to get a GPA of 3.42.
Cumulative GPA vs. Semester GPA
Your Semester GPA reflects your performance during a single term (Fall, Spring, or Summer). Your Cumulative GPA is the average of every grade you have earned across all semesters at UNO. This calculator allows you to input your current standing to see how your new grades will impact your overall Maverick record.
Academic Standing at UNO
Maintaining a high GPA is critical. Most undergraduate programs require a minimum cumulative GPA of 2.0 to remain in good academic standing. Falling below this threshold may lead to academic probation or loss of financial aid eligibility. Graduate students typically must maintain a 3.0 GPA.
function addUnoRow() {
var container = document.getElementById('course-rows');
var row = document.createElement('div');
row.className = 'uno-row';
row.innerHTML = " +
" +
" +
'A / A+' +
'A-' +
'B+' +
'B' +
'B-' +
'C+' +
'C' +
'C-' +
'D+' +
'D' +
'D-' +
'F' +
" +
'';
container.appendChild(row);
}
function calculateUnoGPA() {
var creditInputs = document.getElementsByClassName('course-credits');
var gradeInputs = document.getElementsByClassName('course-grade');
var totalSemesterPoints = 0;
var totalSemesterCredits = 0;
for (var i = 0; i 0) {
totalSemesterPoints += (credits * gradeVal);
totalSemesterCredits += credits;
}
}
var semesterGPA = totalSemesterCredits > 0 ? (totalSemesterPoints / totalSemesterCredits) : 0;
document.getElementById('sem-gpa').innerText = semesterGPA.toFixed(2);
// Cumulative Calculation
var priorCredits = parseFloat(document.getElementById('priorCredits').value) || 0;
var priorGPA = parseFloat(document.getElementById('priorGPA').value) || 0;
var cumulativeWrap = document.getElementById('cumulative-wrap');
if (priorCredits > 0) {
var priorPoints = priorCredits * priorGPA;
var grandTotalPoints = priorPoints + totalSemesterPoints;
var grandTotalCredits = priorCredits + totalSemesterCredits;
var cumulativeGPA = grandTotalPoints / grandTotalCredits;
document.getElementById('cum-gpa').innerText = cumulativeGPA.toFixed(2);
cumulativeWrap.style.display = 'block';
} else {
cumulativeWrap.style.display = 'none';
}
document.getElementById('result-area').style.display = 'block';
}