Southeastern Gpa Calculator

Southeastern GPA Calculator .slu-calc-container { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; max-width: 800px; margin: 20px auto; padding: 25px; border: 1px solid #e0e0e0; border-radius: 12px; background-color: #ffffff; box-shadow: 0 4px 15px rgba(0,0,0,0.05); } .slu-calc-header { text-align: center; border-bottom: 3px solid #004d44; margin-bottom: 25px; padding-bottom: 10px; } .slu-calc-header h2 { color: #004d44; margin: 0; font-size: 28px; } .slu-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; } .slu-table th { text-align: left; padding: 10px; background-color: #f8f9fa; border-bottom: 2px solid #dee2e6; color: #495057; } .slu-table td { padding: 8px; border-bottom: 1px solid #eee; } .slu-input, .slu-select { width: 100%; padding: 10px; border: 1px solid #ced4da; border-radius: 4px; box-sizing: border-box; } .slu-btn-group { display: flex; gap: 10px; margin-bottom: 25px; } .slu-btn { padding: 12px 20px; border: none; border-radius: 6px; cursor: pointer; font-weight: 600; transition: background 0.3s; } .slu-btn-add { background-color: #6c757d; color: white; } .slu-btn-calc { background-color: #004d44; color: white; flex-grow: 1; } .slu-btn-reset { background-color: #dc3545; color: white; } .slu-btn:hover { opacity: 0.9; } .slu-result-box { background-color: #f1f8f6; padding: 20px; border-radius: 8px; border-left: 5px solid #004d44; display: none; } .slu-result-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; text-align: center; } .slu-result-val { font-size: 24px; font-weight: bold; color: #004d44; } .slu-article { margin-top: 40px; line-height: 1.6; color: #333; } .slu-article h3 { color: #004d44; border-bottom: 1px solid #eee; padding-bottom: 5px; } .slu-article ul { padding-left: 20px; }

Southeastern GPA Calculator

Course Name Credits (Hours) Letter Grade
A B C D F
A B C D F
A B C D F
Total Credits
0
Quality Points
0
GPA
0.00

How to Calculate Your Southeastern GPA

At Southeastern Louisiana University, your Grade Point Average (GPA) is a critical metric for maintaining academic standing, qualifying for scholarships like TOPS, and graduation eligibility. The calculation is based on the 4.0 grading scale.

The Southeastern Grading Scale:

  • A: 4 Quality Points
  • B: 3 Quality Points
  • C: 2 Quality Points
  • D: 1 Quality Point
  • F: 0 Quality Points

Step-by-Step Calculation Formula

To calculate your GPA manually, follow these steps:

  1. Multiply the number of credit hours for each course by the point value of the grade earned. This gives you the Quality Points for that course.
  2. Add all the quality points from your courses together.
  3. Add the total number of credit hours attempted (only those that receive a standard letter grade).
  4. Divide the Total Quality Points by the Total Credit Hours.

Calculation Example

Suppose a student completes the following courses in one semester:

  • Biology (3 credits): Grade A (3 x 4 = 12 points)
  • History (3 credits): Grade B (3 x 3 = 9 points)
  • Kinesiology (1 credit): Grade A (1 x 4 = 4 points)

Total Quality Points: 12 + 9 + 4 = 25 points
Total Credit Hours: 3 + 3 + 1 = 7 hours
Semester GPA: 25 / 7 = 3.57

Important Considerations for Southeastern Students

Note that "W" (Withdrawal), "P" (Pass), and "U" grades do not typically impact your GPA calculation as they do not carry quality points. However, failing grades (F) are included in the calculation and can significantly lower your cumulative average. If you are retaking a course, Southeastern's policy on "Repeat/Delete" may apply—be sure to check with your academic advisor regarding how repeated courses affect your official transcript.

function addRow() { var tbody = document.getElementById("courseBody"); var row = document.createElement("tr"); row.innerHTML = '' + '' + '' + 'AB' + 'CD' + 'F'; tbody.appendChild(row); } function calculateGPA() { var creditInputs = document.getElementsByClassName("credit-input"); var gradeSelects = document.getElementsByClassName("grade-select"); var totalCredits = 0; var totalPoints = 0; for (var i = 0; i 0) { totalCredits += credit; totalPoints += (credit * gradeValue); } } var resultBox = document.getElementById("resultBox"); var resCredits = document.getElementById("resCredits"); var resPoints = document.getElementById("resPoints"); var resGPA = document.getElementById("resGPA"); if (totalCredits > 0) { var gpa = totalPoints / totalCredits; resCredits.innerText = totalCredits; resPoints.innerText = totalPoints; resGPA.innerText = gpa.toFixed(2); resultBox.style.display = "block"; } else { alert("Please enter at least one course with credit hours."); resultBox.style.display = "none"; } } function resetCalc() { var creditInputs = document.getElementsByClassName("credit-input"); var nameInputs = document.getElementsByClassName("slu-input"); for (var i = 0; i < nameInputs.length; i++) { nameInputs[i].value = ""; } document.getElementById("resultBox").style.display = "none"; var tbody = document.getElementById("courseBody"); tbody.innerHTML = 'ABCDF' + 'ABCDF' + 'ABCDF'; }

Leave a Reply

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