Showing posts with label AMIE CGPA Calculator. Show all posts
Showing posts with label AMIE CGPA Calculator. Show all posts

Wednesday 19 April 2017

[Track Now] AMIE Section B Grade Cards of Students passed AMIE in Winter 2016 Exams are Dispatched

[Track Now] AMIE Section B Grade Cards of Students passed AMIE in Winter 2016 Exams are Dispatched by IEI.



Hi Friends, IEI Has published a list of Section B Grade Cards and Provisional Certificates of Students passed AMIE Section B in Winter 2016 with the postal tracking numbers of the registered post. So check your number and name and keep track of the post man to get the Original Section B Grade Cards and Provisional Certificates.

Track your AMIE Section A Grade Card here in this link


The Postal Tracking numbers given will take 2 to 3 days to show the status in Indian Postal Website.




Also see following post:-

AMIE Recognition Issue. As you all of you know that AICTE has formed a committee. This Committee will look into the recognition issue of Institutes like AMIE, The Institution of Engineers (India). Now AICTE on 10 Apr 2017 published a Notice in their website. AICTE asked Institutes like AMIE, The Institution of Engineers (India) to submit complete data regarding the Education Process followed at IEI. IEI and all other institutes going through recognition issue has to submit following data in respect their Institutes. AICTE has give 30 days time to submit the data.


All the Best. Keep Sharing this Post

Sunday 17 April 2016

AMIE GPA calculator, AMIE CGPA Calculator and AMIE Percentage Calculator in Excel and in C Lanuguage Programme

Hi Friends 

I have made an AMIE GPA calculator and AMIE CGPA Calculator in Excel and in C Language Programme. You can check Grade Point Average (GPA), Cumulative Grade Point Average (CGPA) and Total marks obtained in Percentage also. The rules mentioned by IEI in the Rules book Volume I are correctly incorporated in this calculator. Its tested and working 100%. If you have any doubts or finds any bugs, please inform me. Please check your anticipations with this calculator created in Excel/ C Language. 

HERE IS SOME INFORMATION FOR ALL ABOUT AMIE GRADES AND ITS MYTHS:-

1. For a complete pass in Section A or in Section B, minimum GPA shall be 6.

2. Full marks in each subject including project work and laboratory experiments: 100.

3. Minimum grade for exemption in each subject: Grade C.

4. Minimum grade for passing project work: Grade B
 
5. Minimum grade for passing laboratory experiments: Grade B

6. Reappearance is not permissible in the subject (s) in which grade C and above is obtained in an examination.

7. Score of grade 'D' in one subject of Section A (Diploma) or two subjects of Section A (Non-diploma)/Section B is only considered in the last attempt provided all the subjects in the scheme are covered with minimum grade point being 6.

8. No division or class is awarded.

INTRODUCTION OF CUMULATIVE GPA (CGPA)

1. Candidates Passing Sections A and B Examinations in Revised Scheme.

2. Grade points of all subjects required to appear to complete the entire course, including laboratory experiments and project work, shall be divided by the number of subjects to arrive at the CGPA. This shall only be indicated in the pass grade card of Section B. This also includes Lab experiments and Project work.

Candidates Passed Section A in Old Scheme and Section B in Revised Scheme.
3. Candidates, who have completed Section A in old scheme securing specific marks in all required subjects and subsequently completed Section B in revised scheme securing specific grades in required subjects, CGPA shall be calculated by converting marks of individual subjects of Section A to grade points and then adding grade points of all subjects of Section A, Section B, project work, and laboratory experiments and divided by the number of applicable subjects. No separate grade card for Section A, which is already completed in old scheme, shall be issued.

4. Candidates Exempted from Section A, by virtue of Passing Sections A & B Examinations earlier, and passed Section B in Additional Branch in Revised Scheme

5. Such candidates shall be considered similar to those who obtained exemption from Section A by virtue of passing degree in engineering from the recognized university. CGPA for them shall be calculated adding the grade points obtained in required number of subjects in Section B, project work and laboratory experiments and dividing by number of applicable subjects.

GRADE "D" CRITERIA:-

1. For PASS, you must get B grade in at least one subject (Section A, Diploma Stream) to make total GPA equal to 6 or more.

2. Grade D will be considered in last attempt only. It will not be carried over.

GPA: H = 10, A = 9, B = 8, C = 6, D = 5

Examples:

(1) Section A: C, C, C, D (D in last attempt). You have to reappear in subject with D grade
Reason: GPA = (6 + 6 + 6 + 5)/4 = 23/4 < 6 (It must be equal or more than 6 for pass)

(2) Section A: C, C, B, D (D in last attempt). PASS
Reason: GPA = (6 + 6 + 8 + 5)/4 = 25/4 > 6 (Pass as GPA is greater than 6)

(3) Section A: C, C, C, C. PASS

(4) Section B: C,C,C,C,C,C,B,D,D > PASS
Reason: (6 + 6 + 6 + 6 + 6 + 6 + 8 + 5 + 5)/9 = 54/6 = 6 (Pass as GPA is 6)

(5) Section B: C,C,C,C,C,B,B,D,D > PASS
 
INSTRUCTIONS TO USE THE CALCULATOR

1. Count and Enter the number of grades of the subjects achieved by you and then only check the result.

2. I am attaching the screenshot for the two conditions of Section A (Diploma) just passed by D Grade Criteria and Just failed in Section A (Diploma).

    https://drive.google.com/open?id=0B9yfWyxe_EBwX0Iwcy1iOHFSVVU      https://drive.google.com/open?id=0B9yfWyxe_EBwX0Iwcy1iOHFSVVU

(File Open password is amiestudytips)

Check Following Video to See How to use the AMIE GPA Excel Calculator and How Perfect it is.



Checked the perfection of my GPA, CGPA Excel calculator with my Own grade Cards. Do you also want to check? Download above calculator and check yourself. I have checked the GPA , I have achieved in Section A and B with the calculator i have made in excel. Check the Image Below:-


Three cases are checked here

Case-1 : Only Section A GPA is calculated as per the Section A Grade Card

Case-2: Only Section B GPA is calculated as per the Section B Grade Card

Case-3: AMIE CGPA = Section A+B+ Project and Lab is calculated as per the Section A/B Grade Card.

Its perfectly matching with the GPA/ CGPA printed in Original grade cards received from IEI.

GPA/CGPA Calculator C Programme:-  

You can copy the following C Language code and try in your computer with C Language Compiler.
______________________________________
/*AMIE PERCENTAGE & GRADE POINT AVERAGE CALCULATOR*/

#include <stdio.h>
void main ()
{
int h, a, b, c, d, noofsubjects;
float totalgrade, totalgpa, percentage, gpa;
int hp, ap, bp, cp, dp;

hp=100;
ap=74;
bp=65;
cp=59;
dp=49;
int hg, ag, bg, cg, dg;
hg=10;
ag=9;
bg=8;
cg=6;
dg=5;

/*FOLLOWING CODE WILL TAKE INPUT FROM USER*/

printf("NUMBER OF SUBJECTS SCORED GRADE H : ");
scanf("%d", &h);
printf("NUMBER OF SUBJECTS SCORED GRADE A : ");
scanf("%d", &a);
printf("NUMBER OF SUBJECTS SCORED GRADE B : ");
scanf("%d", &b);
printf("NUMBER OF SUBJECTS SCORED GRADE C : ");
scanf("%d", &c);
printf("NUMBER OF SUBJECTS SCORED GRADE D : ");
scanf("%d", &d);
noofsubjects = h+a+b+c+d;
/*TOTAL GRADE IS = (h*100 + A*74 + B*65 + c*59 + d*49) */
totalgrade=((h*hp)+(a*ap)+(b*bp)+(c*cp)+(d*dp));
totalgpa=((h*hg)+(a*ag)+(b*bg)+(c*cg)+(d*dg));
percentage=totalgrade/noofsubjects;
gpa=totalgpa/noofsubjects;

/*FOLLOWING CODE WILL OUTPUT THE DETAILS*/
printf("\n NUMBER OF SUBJECTS COUNTED: %d\n", noofsubjects);
printf("\n TOTAL MARKS IN PERCENTAGE IS : %.2f\n", percentage);
printf("\n GRADE POINT AVERAGE IS : %.2f\n", gpa);
getch();
}
____________________________________
Result Screenshot of the C Programme:-


Thanks and Regards.







Also Check Following posts:-