{"id":90887,"date":"2023-06-20T19:48:20","date_gmt":"2023-06-20T14:18:20","guid":{"rendered":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/"},"modified":"2024-08-29T22:27:31","modified_gmt":"2024-08-29T16:57:31","slug":"cgpa-to-gpa","status":"publish","type":"post","link":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/","title":{"rendered":"CGPA to GPA"},"content":{"rendered":"\n<div class=\"converter-container\">\n    <h2 id=\"cgpa-to-percentage-converter\">CGPA to Percentage Converter<\/h2>\n\n    <!-- Conversion Type Tabs -->\n    <div class=\"tab\">\n        <button class=\"tablinks active\" onclick=\"openTab(event, 'cgpaToPercentage')\">CGPA to Percentage<\/button>\n        <button class=\"tablinks\" onclick=\"openTab(event, 'percentageToCgpa')\">Percentage to CGPA<\/button>\n    <\/div>\n\n    <!-- Grading Scale Tabs -->\n    <div class=\"tab\">\n        <button class=\"tablinks scale active\" onclick=\"selectScale(event, 5)\">Out of 5<\/button>\n        <button class=\"tablinks scale\" onclick=\"selectScale(event, 10)\">Out of 10<\/button>\n        <button class=\"tablinks scale\" onclick=\"selectScale(event, 4)\">Out of 4<\/button>\n    <\/div>\n\n    <!-- Input and Buttons -->\n    <label id=\"inputLabel\" for=\"inputValue\">Enter CGPA:<\/label>\n    <input type=\"number\" id=\"inputValue\" step=\"any\" placeholder=\"Enter your value here\">\n\n    <!-- Output Field -->\n    <label for=\"outputValue\">Result:<\/label>\n    <input type=\"text\" id=\"outputValue\" readonly>\n\n    <div class=\"button-group\">\n        <button onclick=\"convert()\">Convert<\/button>\n        <button class=\"reset\" onclick=\"resetForm()\">Reset<\/button>\n    <\/div>\n<\/div>\n\n<style>\n    .converter-container {\n        max-width: 700px;\n        background-color: #f0f8ff; \/* Pastel blue *\/\n        padding: 20px;\n        border-radius: 8px;\n        box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);\n        margin: 20px auto;\n        font-family: Arial, sans-serif;\n    }\n    h2 {\n        text-align: center;\n        color: #333;\n        font-size: 1.5rem;\n    }\n    .tab {\n        display: flex;\n        flex-wrap: wrap;\n        margin-bottom: 20px;\n    }\n    .tab button {\n        background-color: #ffe4e1; \/* Pastel pink *\/\n        color: #555;\n        flex: 1 1 30%;\n        border: none;\n        outline: none;\n        cursor: pointer;\n        padding: 14px 16px;\n        margin: 5px;\n        transition: background-color 0.3s;\n        font-size: 16px;\n        min-width: 30%;\n        text-align: center;\n        border-radius: 4px;\n    }\n    .tab button:hover {\n        background-color: #ffdab9; \/* Lighter pastel pink *\/\n    }\n    .tab button.active {\n        background-color: #ffcccb; \/* Light red *\/\n        font-weight: bold;\n    }\n    label {\n        display: block;\n        margin-bottom: 10px;\n        font-weight: bold;\n        color: #333;\n        font-size: 1rem;\n    }\n    input {\n        width: 100%;\n        padding: 12px;\n        margin-bottom: 20px;\n        border-radius: 4px;\n        border: 1px solid #ccc;\n        font-size: 16px;\n        background-color: #fff;\n        color: #333;\n    }\n    input[readonly] {\n        background-color: #e9ecef;\n    }\n    .button-group {\n        display: flex;\n        justify-content: space-between;\n        flex-wrap: wrap;\n    }\n    button {\n        flex: 1 1 48%;\n        padding: 12px;\n        border: none;\n        border-radius: 4px;\n        background-color: #87cefa; \/* Light pastel blue *\/\n        color: white;\n        cursor: pointer;\n        font-size: 16px;\n        margin-bottom: 10px;\n        transition: background-color 0.3s;\n    }\n    button.reset {\n        background-color: #a9a9a9; \/* Darker pastel gray *\/\n    }\n    button:hover {\n        background-color: #6495ed; \/* Cornflower blue *\/\n    }\n    button.reset:hover {\n        background-color: #808080; \/* Gray *\/\n    }\n\n    \/* Responsive design *\/\n    @media (max-width: 768px) {\n        .converter-container {\n            padding: 15px;\n            margin: 15px;\n        }\n        h2 {\n            font-size: 1.25rem;\n        }\n        .tab button {\n            font-size: 14px;\n            padding: 12px 14px;\n        }\n        button {\n            font-size: 14px;\n            padding: 10px;\n        }\n    }\n\n    @media (max-width: 480px) {\n        .tab button {\n            flex: 1 1 100%;\n            min-width: 100%;\n        }\n        .button-group button {\n            flex: 1 1 100%;\n            min-width: 100%;\n            margin-bottom: 10px;\n        }\n        h2 {\n            font-size: 1rem;\n        }\n    }\n<\/style>\n\n<script>\n    let selectedConversion = 'cgpaToPercentage';\n    let selectedScale = 5;\n\n    function openTab(evt, conversionType) {\n        selectedConversion = conversionType;\n\n        \/\/ Update tabs\n        const tablinks = document.getElementsByClassName(\"tablinks\");\n        for (let i = 0; i < tablinks.length; i++) {\n            tablinks[i].className = tablinks[i].className.replace(\" active\", \"\");\n        }\n        evt.currentTarget.className += \" active\";\n\n        \/\/ Update label\n        const inputLabel = document.getElementById('inputLabel');\n        inputLabel.textContent = selectedConversion === 'cgpaToPercentage' ? 'Enter CGPA:' : 'Enter Percentage:';\n        document.getElementById('inputValue').value = '';\n        document.getElementById('outputValue').value = '';\n    }\n\n    function selectScale(evt, scale) {\n        selectedScale = scale;\n\n        \/\/ Update scale tabs\n        const scalelinks = document.getElementsByClassName(\"tablinks scale\");\n        for (let i = 0; i < scalelinks.length; i++) {\n            scalelinks[i].className = scalelinks[i].className.replace(\" active\", \"\");\n        }\n        evt.currentTarget.className += \" active\";\n    }\n\n    function convert() {\n        const inputValue = parseFloat(document.getElementById('inputValue').value);\n        const outputValue = document.getElementById('outputValue');\n\n        if (isNaN(inputValue) || inputValue <= 0) {\n            outputValue.value = \"Please enter a valid number.\";\n            return;\n        }\n\n        let result = 0;\n\n        if (selectedConversion === 'cgpaToPercentage') {\n            if (selectedScale === 5) {\n                result = (inputValue \/ 5) * 100;\n            } else if (selectedScale === 10) {\n                result = inputValue * 9.5;\n            } else if (selectedScale === 4) {\n                result = (inputValue \/ 4) * 100;\n            }\n            outputValue.value = `Percentage: ${result.toFixed(2)}%`;\n        } else if (selectedConversion === 'percentageToCgpa') {\n            if (selectedScale === 5) {\n                result = (inputValue \/ 100) * 5;\n            } else if (selectedScale === 10) {\n                result = inputValue \/ 9.5;\n            } else if (selectedScale === 4) {\n                result = (inputValue \/ 100) * 4;\n            }\n            outputValue.value = `CGPA: ${result.toFixed(2)}`;\n        }\n    }\n\n    function resetForm() {\n        selectedConversion = 'cgpaToPercentage';\n        selectedScale = 5;\n\n        document.getElementById('inputLabel').textContent = 'Enter CGPA:';\n        document.getElementById('inputValue').value = '';\n        document.getElementById('outputValue').value = '';\n\n        const tablinks = document.getElementsByClassName(\"tablinks\");\n        for (let i = 0; i < tablinks.length; i++) {\n            tablinks[i].className = tablinks[i].className.replace(\" active\", \"\");\n        }\n        tablinks[0].className += \" active\";\n\n        const scalelinks = document.getElementsByClassName(\"tablinks scale\");\n        for (let i = 0; i < scalelinks.length; i++) {\n            scalelinks[i].className = scalelinks[i].className.replace(\" active\", \"\");\n        }\n        scalelinks[0].className += \" active\";\n    }\n<\/script>\n\n\n\n\n<p>Have you ever been in a need to convert your CGPA to GPA? Don't worry if you find the concept a bit confusing. They might sound a bit difficult to understand at first, but we have your back with this one. Today, we're going to delve deep into the process of converting <strong>CGPA to GPA <\/strong>and why it's important for students when they need to provide their GPA for academic or professional purposes.<\/p>\n\n\n\n<p>Now, let's break it down. CGPA is short for Cumulative Grade Point Average, while GPA stands for Grade Point Average. Both of these terms are used to measure our academic performance, but they differ in their calculation methods and usage. Understanding how to<strong> convert CGPA to GPA <\/strong>is essential because it's often required when applying for further studies, internships, or jobs. So, brace yourselves to learn about both concepts in detail.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" id=\"what-is-cgpa\"><strong>What is CGPA?<\/strong><\/h2>\n\n\n\n<p>CGPA is an overall estimate of your academic scores throughout your educational journey. It takes into account all the courses you've studied and the grades you've scored. So, if you've ever wondered how you're doing academically, CGPA has the answer. It provides a big-picture view of your achievements, combining the results of multiple courses into a single metric.<\/p>\n\n\n\n<p>Calculating CGPA depends on the grading system used by your educational institution. Each grade you receive is given a grade point value, usually on a scale of 0 to 10 or 0 to 4. These grade points are then multiplied by the credit hours assigned to each course, and the weighted grade points are summed up. Finally, the cumulative sum is divided by the total credit hours to determine your CGPA.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"what-is-gpa\"><strong>What is GPA?<\/strong><\/h2>\n\n\n\n<p>GPA is a simplified version of academic performance measurement that is widely used in various educational systems. Unlike CGPA, which considers the credit hours of each course, GPA assigns equal weightage to all courses. So, every course carries the same significance when calculating your GPA.<\/p>\n\n\n\n<p>The calculation of GPA relies on a standardized grading scale. Each grade, such as A, B, C, and so on, is assigned a specific grade point value. For instance, an A may be worth 4 grade points, a B worth 3, and so forth. Your GPA is then determined by converting your course grades into grade points and finding the average of those points.<\/p>\n\n\n<figure class=\"wp-block-image aligncenter size-large zoomable\" data-full=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1.jpg\"><a href=\"https:\/\/www.mygreatlearning.com\/university-arizona-masters-in-business-analytics-hybrid?utm_source=new_campaign_blog&amp;utm_medium=blog&amp;utm_campaign=blog_cgpatogpa_eller\"><img decoding=\"async\" width=\"1024\" height=\"320\" src=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-1024x320.jpg\" alt=\"\" class=\"wp-image-94506\" srcset=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-1024x320.jpg 1024w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-300x94.jpg 300w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-768x240.jpg 768w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-150x47.jpg 150w, https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1.jpg 1280w\" sizes=\"(max-width: 1024px) 100vw, 1024px\" \/><\/a><\/figure>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"why-convert-cgpa-to-gpa\"><strong>Why Convert CGPA to GPA?&nbsp;<\/strong><\/h2>\n\n\n\n<p>You might wonder why we need to<strong> convert CGPA to GPA<\/strong> in the first place. Well, the answer lies in the requirements of different institutions or job applications. While some might ask for your CGPA, others specifically request your GPA. To ensure accurate information, you must convert your CGPA to GPA using a standardized conversion formula.<\/p>\n\n\n\n<p>This way, you can present your academic achievements in a format that aligns with the requirements of the specific institution or organization you're applying to. In such cases, if you have your CGPA handy, you can convert it to GPA using a standardized conversion formula. This conversion helps ensure that you're on the same page as those who are using the GPA system.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"the-conversion-process-cgpa-to-gpa\"><strong>The Conversion Process: CGPA to GPA<\/strong><\/h2>\n\n\n\n<p>Now that we understand why <strong>CGPA to GPA<\/strong> conversion matters, let's explore the conversion process itself. While there are variations in the conversion methods, we'll cover a common approach you can use as a starting point.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-1-understand-the-grading-scale\"><strong>Step 1: Understand the Grading Scale<\/strong><\/h3>\n\n\n\n<p>Start by familiarizing yourself with the grading scale used by your educational institution. Identify the grade point values assigned to each grade, as this will be crucial for the conversion.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-2-gather-your-transcript\"><strong>Step 2: Gather Your Transcript<\/strong><\/h3>\n\n\n\n<p>Collect your academic transcript, which includes the course names, grades, and credit hours for each course. Ensure that you have all the required data points to accurately convert your CGPA to GPA.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-3-assign-grade-points\"><strong>Step 3: Assign Grade Points<\/strong><\/h3>\n\n\n\n<p>Convert each of your course grades into their corresponding grade points based on the grading scale. For example, if an A grade is worth 4-grade points, assign that value to each A grade you've received.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-4-calculate-weighted-grade-points\"><strong>Step 4: Calculate Weighted Grade Points<\/strong><\/h3>\n\n\n\n<p>Multiply the grade points of each course by the credit hours assigned to that course. This step accounts for the differences in the credit hours across courses and reflects the weighted impact of each course on your GPA.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-5-sum-the-weighted-grade-points\"><strong>Step 5: Sum the Weighted Grade Points<\/strong><\/h3>\n\n\n\n<p>Add up all the weighted grade points for all your courses. This sum represents the total weighted grade points earned throughout your academic journey.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-6-determine-the-total-credit-hours\"><strong>Step 6: Determine the Total Credit Hours<\/strong><\/h3>\n\n\n\n<p>Calculate the total number of credit hours you have completed across all courses.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-7-calculate-your-gpa\"><strong>Step 7: Calculate Your GPA<\/strong><\/h3>\n\n\n\n<p>Divide the total weighted grade points by the total credit hours. The resulting number is your GPA, representing your academic performance on the standardized scale.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-by-step-conversion-a-practical-outlook\"><strong>Step-By-Step Conversion: A Practical Outlook<\/strong><\/h2>\n\n\n\n<p>Converting CGPA to GPA can involve different conversion scales or methodologies depending on the institution or organization's requirements. Let's explore some examples to give you a better understanding of how this conversion works:<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"example-with-a-4-point-scale\"><strong>Example with a 4-Point Scale<\/strong><\/h2>\n\n\n\n<p>Suppose your CGPA is 8.5 on a 10-point scale. To convert this CGPA to GPA on a 4-point scale, you can use a simple conversion formula. Multiply your CGPA by 0.4 to obtain your GPA. In this case, the calculation would be 8.5 * 0.4 = 3.4 GPA.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"example-with-a-100-point-scale\"><strong>Example with a 100-Point Scale<\/strong><\/h2>\n\n\n\n<p>Imagine your CGPA is 7.8 on a 10-point scale, and you need to convert it to a GPA on a 100-point scale. In this scenario, you can use a proportional conversion method. Multiply your CGPA by 10 to get the equivalent on a 100-point scale. Applying this formula, the conversion would be 7.8 * 10 = 78 GPA.<\/p>\n\n\n\n<p>Let's dive deeper into the conversion process with some sample calculations and explanations:<\/p>\n\n\n\n<p><strong>Example:<\/strong><\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Course 1: Grade A, Credit Hours 3<br>Course 2: Grade B, Credit Hours 4<br>Course 3: Grade A-, Credit Hours 3<br>Course 4: Grade B+, Credit Hours 3<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-1-assign-grade-points\"><strong>Step 1: Assign Grade Points<\/strong><\/h3>\n\n\n\n<p>Using the grading scale of your institution, assign grade points to each grade:<\/p>\n\n\n\n<p>A = 4, B = 3, A- = 3.7, B+ = 3.3<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-2-calculate-weighted-grade-points\"><strong>Step 2: Calculate Weighted Grade Points<\/strong><\/h3>\n\n\n\n<p>Multiply the grade points by the credit hours for each course:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">Course 1: 4 (Grade Point) * 3 (Credit Hours) = 12 (Weighted Grade Points)<br>Course 2: 3 * 4 = 12<br>Course 3: 3.7 * 3 = 11.1<br>Course 4: 3.3 * 3 = 9.9<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-3-sum-the-weighted-grade-points\"><strong>Step 3: Sum the Weighted Grade Points<\/strong><\/h3>\n\n\n\n<p>Add up all the weighted grade points:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">12 + 12 + 11.1 + 9.9 = 45<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-4-determine-the-total-credit-hours\"><strong>Step 4: Determine the Total Credit Hours<\/strong><\/h3>\n\n\n\n<p>Calculate the total credit hours:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">3 + 4 + 3 + 3 = 13<\/pre>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"step-5-calculate-your-gpa\"><strong>Step 5: Calculate Your GPA<\/strong><\/h3>\n\n\n\n<p>Divide the total weighted grade points by the total credit hours:<\/p>\n\n\n\n<pre class=\"wp-block-preformatted\">45 (Weighted Grade Points) \/ 13 (Total Credit Hours) = 3.46 GPA<\/pre>\n\n\n\n<p>There you have it, you\u2019ve got yourself a <strong>CGPA to GPA calculator<\/strong> with just these simple steps.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"tips-to-keep-in-mind-for-cgpa-to-gpa-conversion\"><strong>Tips to Keep in Mind for CGPA to GPA Conversion<\/strong><\/h2>\n\n\n\n<p>While converting CGPA to GPA, it's crucial to keep a few tips in mind:<\/p>\n\n\n\n<ul class=\"wp-block-list\">\n<li><strong>Format consistently: <\/strong>Maintain a consistent format for presenting the converted GPA across different documents. Use a standard numeric format, such as \"3.5\" or \"78,\" to ensure clarity and ease of understanding.<\/li>\n\n\n\n<li><strong>Avoid rounding errors:<\/strong> Be careful with rounding off your GPA. Stick to the decimal places specified by the conversion method or scale to maintain accuracy. Rounding errors can lead to misunderstandings or discrepancies.<\/li>\n\n\n\n<li><strong>Seek guidance if needed:<\/strong> If you're unsure about the conversion process, reach out to academic advisors or professionals who can provide guidance.<\/li>\n\n\n\n<li><strong>Double-check your calculations: <\/strong>Ensure that you accurately assign grade points, calculate weighted grade points, and perform the division for GPA calculation.<\/li>\n\n\n\n<li><strong>Be aware of any conversion variation<\/strong>s: Different institutions or organizations might have specific conversion formulas or guidelines. Research and follow their instructions for accurate conversion.<\/li>\n<\/ul>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"importance-of-providing-context\"><strong>Importance of Providing Context<\/strong><\/h2>\n\n\n\n<p>You must provide context alongside the converted GPA. Here's why:<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"ensures-a-clear-understanding\"><strong>Ensures a Clear Understanding<\/strong><\/h3>\n\n\n\n<p>Context helps others understand the grading system and scale used by your educational institution. Without this information, the converted GPA may be meaningless or open to misinterpretation. By providing context, you give the reader a better understanding of your academic performance and how it compares to the standards of your institution.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"facilitates-fair-comparison\"><strong>Facilitates Fair Comparison<\/strong><\/h3>\n\n\n\n<p>Different institutions may have diverse grading systems and scales. By explaining the context, you enable a fair comparison between your academic achievements and those of other applicants. It ensures that your GPA is evaluated in light of the grading standards specific to your institution, preventing unfair judgments or misconceptions.<\/p>\n\n\n\n<h3 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"enhances-transparency\"><strong>Enhances Transparency<\/strong><\/h3>\n\n\n\n<p>Context promotes transparency in the evaluation process. It demonstrates your willingness to provide relevant information and ensures that your GPA is not seen in isolation. Transparency helps build trust and credibility, especially when academic performance plays a crucial role in scholarship applications, admissions, or job opportunities.<\/p>\n\n\n\n<h2 class=\"wp-block-heading\" class=\"wp-block-heading\" id=\"key-takeaways\"><strong>Key Takeaways<\/strong><\/h2>\n\n\n\n<p>Congratulations! You've successfully mastered the art of converting CGPA to GPA. You can obviously make use of several <strong>CGPA to GPA converters<\/strong> available online. However, the accuracy that you\u2019ll get when you run the calculations yourself will be forever unmatchable. So, this is where we part ways, only to come up with more such solution-centric blogs for you.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>CGPA to Percentage Converter CGPA to Percentage Percentage to CGPA Out of 5 Out of 10 Out of 4 Enter CGPA: Result: Convert Reset Have you ever been in a need to convert your CGPA to GPA? Don't worry if you find the concept a bit confusing. They might sound a bit difficult to understand [&hellip;]<\/p>\n","protected":false},"author":41,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_acf_changed":false,"_uag_custom_page_level_css":"","site-sidebar-layout":"default","site-content-layout":"","ast-site-content-layout":"default","site-content-style":"default","site-sidebar-style":"default","ast-global-header-display":"","ast-banner-title-visibility":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","ast-disable-related-posts":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":"","astra-migrate-meta-layouts":"set","ast-page-background-enabled":"default","ast-page-background-meta":{"desktop":{"background-color":"var(--ast-global-color-4)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"ast-content-background-meta":{"desktop":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"tablet":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""},"mobile":{"background-color":"var(--ast-global-color-5)","background-image":"","background-repeat":"repeat","background-position":"center center","background-size":"auto","background-attachment":"scroll","background-type":"","background-media":"","overlay-type":"","overlay-color":"","overlay-opacity":"","overlay-gradient":""}},"footnotes":""},"categories":[36306],"tags":[],"content_type":[],"class_list":["post-90887","post","type-post","status-publish","format-standard","hentry","category-study-abroad"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v27.3 (Yoast SEO v27.3) - https:\/\/yoast.com\/product\/yoast-seo-premium-wordpress\/ -->\n<title>Online CGPA to GPA Converter for Study Abroad<\/title>\n<meta name=\"description\" content=\"Have you ever been in a need to convert your CGPA to GPA? Don&#039;t worry if you find the concept a bit confusing. They might sound a bit difficult to understand at first, but we have your back with this one.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"CGPA to GPA\" \/>\n<meta property=\"og:description\" content=\"Have you ever been in a need to convert your CGPA to GPA? Don&#039;t worry if you find the concept a bit confusing. They might sound a bit difficult to understand at first, but we have your back with this one.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/\" \/>\n<meta property=\"og:site_name\" content=\"Great Learning Blog: Free Resources what Matters to shape your Career!\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/GreatLearningOfficial\/\" \/>\n<meta property=\"article:published_time\" content=\"2023-06-20T14:18:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2024-08-29T16:57:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-1024x320.jpg\" \/>\n<meta name=\"author\" content=\"Great Learning Editorial Team\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@https:\/\/twitter.com\/Great_Learning\" \/>\n<meta name=\"twitter:site\" content=\"@Great_Learning\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Great Learning Editorial Team\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"7 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/\"},\"author\":{\"name\":\"Great Learning Editorial Team\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/person\\\/6f993d1be4c584a335951e836f2656ad\"},\"headline\":\"CGPA to GPA\",\"datePublished\":\"2023-06-20T14:18:20+00:00\",\"dateModified\":\"2024-08-29T16:57:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/\"},\"wordCount\":1457,\"commentCount\":0,\"publisher\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/GLA-intl-banner-redeign-2-1-1024x320.jpg\",\"articleSection\":[\"Study Abroad\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/\",\"name\":\"Online CGPA to GPA Converter for Study Abroad\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/GLA-intl-banner-redeign-2-1-1024x320.jpg\",\"datePublished\":\"2023-06-20T14:18:20+00:00\",\"dateModified\":\"2024-08-29T16:57:31+00:00\",\"description\":\"Have you ever been in a need to convert your CGPA to GPA? Don't worry if you find the concept a bit confusing. They might sound a bit difficult to understand at first, but we have your back with this one.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/#primaryimage\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/GLA-intl-banner-redeign-2-1.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2024\\\/02\\\/GLA-intl-banner-redeign-2-1.jpg\",\"width\":1280,\"height\":400},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/cgpa-to-gpa\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Blog\",\"item\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Study Abroad\",\"item\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/study-abroad\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"CGPA to GPA\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\",\"name\":\"Great Learning Blog\",\"description\":\"Learn, Upskill &amp; Career Development Guide and Resources\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\"},\"alternateName\":\"Great Learning\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#organization\",\"name\":\"Great Learning\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/GL-Logo.jpg\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/06\\\/GL-Logo.jpg\",\"width\":900,\"height\":900,\"caption\":\"Great Learning\"},\"image\":{\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/www.facebook.com\\\/GreatLearningOfficial\\\/\",\"https:\\\/\\\/x.com\\\/Great_Learning\",\"https:\\\/\\\/www.instagram.com\\\/greatlearningofficial\\\/\",\"https:\\\/\\\/www.linkedin.com\\\/school\\\/great-learning\\\/\",\"https:\\\/\\\/in.pinterest.com\\\/greatlearning12\\\/\",\"https:\\\/\\\/www.youtube.com\\\/user\\\/beaconelearning\\\/\"],\"description\":\"Great Learning is a leading global ed-tech company for professional training and higher education. It offers comprehensive, industry-relevant, hands-on learning programs across various business, technology, and interdisciplinary domains driving the digital economy. These programs are developed and offered in collaboration with the world's foremost academic institutions.\",\"email\":\"info@mygreatlearning.com\",\"legalName\":\"Great Learning Education Services Pvt. Ltd\",\"foundingDate\":\"2013-11-29\",\"numberOfEmployees\":{\"@type\":\"QuantitativeValue\",\"minValue\":\"1001\",\"maxValue\":\"5000\"}},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/#\\\/schema\\\/person\\\/6f993d1be4c584a335951e836f2656ad\",\"name\":\"Great Learning Editorial Team\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"contentUrl\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/wp-content\\\/uploads\\\/2022\\\/02\\\/unnamed.webp\",\"caption\":\"Great Learning Editorial Team\"},\"description\":\"The Great Learning Editorial Staff includes a dynamic team of subject matter experts, instructors, and education professionals who combine their deep industry knowledge with innovative teaching methods. Their mission is to provide learners with the skills and insights needed to excel in their careers, whether through upskilling, reskilling, or transitioning into new fields.\",\"sameAs\":[\"https:\\\/\\\/www.mygreatlearning.com\\\/\",\"https:\\\/\\\/in.linkedin.com\\\/school\\\/great-learning\\\/\",\"https:\\\/\\\/x.com\\\/https:\\\/\\\/twitter.com\\\/Great_Learning\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCObs0kLIrDjX2LLSybqNaEA\"],\"award\":[\"Best EdTech Company of the Year 2024\",\"Education Economictimes Outstanding Education\\\/Edtech Solution Provider of the Year 2024\",\"Leading E-learning Platform 2024\"],\"url\":\"https:\\\/\\\/www.mygreatlearning.com\\\/blog\\\/author\\\/greatlearning\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"Online CGPA to GPA Converter for Study Abroad","description":"Have you ever been in a need to convert your CGPA to GPA? Don't worry if you find the concept a bit confusing. They might sound a bit difficult to understand at first, but we have your back with this one.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/","og_locale":"en_US","og_type":"article","og_title":"CGPA to GPA","og_description":"Have you ever been in a need to convert your CGPA to GPA? Don't worry if you find the concept a bit confusing. They might sound a bit difficult to understand at first, but we have your back with this one.","og_url":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/","og_site_name":"Great Learning Blog: Free Resources what Matters to shape your Career!","article_publisher":"https:\/\/www.facebook.com\/GreatLearningOfficial\/","article_published_time":"2023-06-20T14:18:20+00:00","article_modified_time":"2024-08-29T16:57:31+00:00","og_image":[{"url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-1024x320.jpg","type":"","width":"","height":""}],"author":"Great Learning Editorial Team","twitter_card":"summary_large_image","twitter_creator":"@https:\/\/twitter.com\/Great_Learning","twitter_site":"@Great_Learning","twitter_misc":{"Written by":"Great Learning Editorial Team","Est. reading time":"7 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/#article","isPartOf":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/"},"author":{"name":"Great Learning Editorial Team","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/person\/6f993d1be4c584a335951e836f2656ad"},"headline":"CGPA to GPA","datePublished":"2023-06-20T14:18:20+00:00","dateModified":"2024-08-29T16:57:31+00:00","mainEntityOfPage":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/"},"wordCount":1457,"commentCount":0,"publisher":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-1024x320.jpg","articleSection":["Study Abroad"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/","url":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/","name":"Online CGPA to GPA Converter for Study Abroad","isPartOf":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#website"},"primaryImageOfPage":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/#primaryimage"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/#primaryimage"},"thumbnailUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1-1024x320.jpg","datePublished":"2023-06-20T14:18:20+00:00","dateModified":"2024-08-29T16:57:31+00:00","description":"Have you ever been in a need to convert your CGPA to GPA? Don't worry if you find the concept a bit confusing. They might sound a bit difficult to understand at first, but we have your back with this one.","breadcrumb":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/#primaryimage","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1.jpg","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2024\/02\/GLA-intl-banner-redeign-2-1.jpg","width":1280,"height":400},{"@type":"BreadcrumbList","@id":"https:\/\/www.mygreatlearning.com\/blog\/cgpa-to-gpa\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Blog","item":"https:\/\/www.mygreatlearning.com\/blog\/"},{"@type":"ListItem","position":2,"name":"Study Abroad","item":"https:\/\/www.mygreatlearning.com\/blog\/study-abroad\/"},{"@type":"ListItem","position":3,"name":"CGPA to GPA"}]},{"@type":"WebSite","@id":"https:\/\/www.mygreatlearning.com\/blog\/#website","url":"https:\/\/www.mygreatlearning.com\/blog\/","name":"Great Learning Blog","description":"Learn, Upskill &amp; Career Development Guide and Resources","publisher":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization"},"alternateName":"Great Learning","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.mygreatlearning.com\/blog\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/www.mygreatlearning.com\/blog\/#organization","name":"Great Learning","url":"https:\/\/www.mygreatlearning.com\/blog\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/logo\/image\/","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/06\/GL-Logo.jpg","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/06\/GL-Logo.jpg","width":900,"height":900,"caption":"Great Learning"},"image":{"@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/www.facebook.com\/GreatLearningOfficial\/","https:\/\/x.com\/Great_Learning","https:\/\/www.instagram.com\/greatlearningofficial\/","https:\/\/www.linkedin.com\/school\/great-learning\/","https:\/\/in.pinterest.com\/greatlearning12\/","https:\/\/www.youtube.com\/user\/beaconelearning\/"],"description":"Great Learning is a leading global ed-tech company for professional training and higher education. It offers comprehensive, industry-relevant, hands-on learning programs across various business, technology, and interdisciplinary domains driving the digital economy. These programs are developed and offered in collaboration with the world's foremost academic institutions.","email":"info@mygreatlearning.com","legalName":"Great Learning Education Services Pvt. Ltd","foundingDate":"2013-11-29","numberOfEmployees":{"@type":"QuantitativeValue","minValue":"1001","maxValue":"5000"}},{"@type":"Person","@id":"https:\/\/www.mygreatlearning.com\/blog\/#\/schema\/person\/6f993d1be4c584a335951e836f2656ad","name":"Great Learning Editorial Team","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","url":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","contentUrl":"https:\/\/www.mygreatlearning.com\/blog\/wp-content\/uploads\/2022\/02\/unnamed.webp","caption":"Great Learning Editorial Team"},"description":"The Great Learning Editorial Staff includes a dynamic team of subject matter experts, instructors, and education professionals who combine their deep industry knowledge with innovative teaching methods. Their mission is to provide learners with the skills and insights needed to excel in their careers, whether through upskilling, reskilling, or transitioning into new fields.","sameAs":["https:\/\/www.mygreatlearning.com\/","https:\/\/in.linkedin.com\/school\/great-learning\/","https:\/\/x.com\/https:\/\/twitter.com\/Great_Learning","https:\/\/www.youtube.com\/channel\/UCObs0kLIrDjX2LLSybqNaEA"],"award":["Best EdTech Company of the Year 2024","Education Economictimes Outstanding Education\/Edtech Solution Provider of the Year 2024","Leading E-learning Platform 2024"],"url":"https:\/\/www.mygreatlearning.com\/blog\/author\/greatlearning\/"}]}},"uagb_featured_image_src":{"full":false,"thumbnail":false,"medium":false,"medium_large":false,"large":false,"1536x1536":false,"2048x2048":false,"web-stories-poster-portrait":false,"web-stories-publisher-logo":false,"web-stories-thumbnail":false},"uagb_author_info":{"display_name":"Great Learning Editorial Team","author_link":"https:\/\/www.mygreatlearning.com\/blog\/author\/greatlearning\/"},"uagb_comment_info":0,"uagb_excerpt":"CGPA to Percentage Converter CGPA to Percentage Percentage to CGPA Out of 5 Out of 10 Out of 4 Enter CGPA: Result: Convert Reset Have you ever been in a need to convert your CGPA to GPA? Don't worry if you find the concept a bit confusing. They might sound a bit difficult to understand&hellip;","_links":{"self":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/90887","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/users\/41"}],"replies":[{"embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/comments?post=90887"}],"version-history":[{"count":7,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/90887\/revisions"}],"predecessor-version":[{"id":99557,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/posts\/90887\/revisions\/99557"}],"wp:attachment":[{"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/media?parent=90887"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/categories?post=90887"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/tags?post=90887"},{"taxonomy":"content_type","embeddable":true,"href":"https:\/\/www.mygreatlearning.com\/blog\/wp-json\/wp\/v2\/content_type?post=90887"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}