Cgpa Calculator Aiub

Most AIUB-specific calculators (like the ones hosted on student forums, GitHub, or the unofficial AIUB App) follow a similar interface. Here is how to use one effectively:

  • Audit courses: Usually credit/no-credit or audit courses do not affect CGPA.
  • Rounding: Universities vary (round to two decimal places or truncate). Follow AIUB’s published rounding rule when reporting official CGPA.
  • Minimum passing grade for credit and progression (e.g., D vs. C) affects graduation eligibility but still contributes to CGPA per rules.
  • Transfer credits: Often transfer credits may carry credit hours but not grade points; they may not affect CGPA. Verify AIUB’s transfer-credit policy.

  • | Letter Grade | Grade Point (GP) | Numerical Mark (Out of 100) | |--------------|----------------|-----------------------------| | A | 4.00 | 80 – 100 | | A- | 3.70 | 75 – 79 | | B+ | 3.30 | 70 – 74 | | B | 3.00 | 65 – 69 | | B- | 2.70 | 60 – 64 | | C+ | 2.30 | 55 – 59 | | C | 2.00 | 50 – 54 | | D | 1.00 | 40 – 49 | | F | 0.00 | Below 40 |

    Remarks:


    Click “Add Course” for each subject in your current trimester. You will need:

    When choosing a calculator, look for these specific features helpful for AIUB students: cgpa calculator aiub

    Recommendation: Use a verified AIUB CGPA calculator tool or a properly formatted Excel sheet to avoid mistakes.


    Input: list of courses where each course has credits, gradeLetter
    Map gradeLetter -> gradePoint (use AIUB table)
    qualityPoints = 0
    totalCredits = 0
    for each course in list:
      if course.gradeLetter in countedGrades:
        gp = gradePoint(course.gradeLetter)
        qualityPoints += gp * course.credits
        totalCredits += course.credits
    if totalCredits == 0:
      CGPA = 0
    else:
      CGPA = qualityPoints / totalCredits
    Output CGPA rounded per official rule
    

    For cumulative updates, store cumulativeQualityPoints and cumulativeCredits and add term values before dividing. Most AIUB-specific calculators (like the ones hosted on


    Given current cumulative: 86.4 quality points / 25.5 credits (CGPA ≈ 3.39). Suppose you retake a 3-credit course where you had a C (2.0) and earn an A (4.0) and AIUB uses grade replacement (only new grade counts):

    If AIUB counts both attempts, credits increase by 3 and quality points by 12.0, so recompute accordingly. Audit courses: Usually credit/no-credit or audit courses do