Grade point average

Hello,
The problem: This is a calculator type of script and I am
going nowhere... I want to convert the grade, example A,A+,B,B+into
a numeric form. Like A+ is equivalent to 4 and the conversion
appear automatically. I have to input a credit and it automatically
multiplies with the given numeric grade to another.
Please help!

Does this help?
function gradeToNum(grade:String):Number {
var baseGrades = {A:4,B:3,C:2,D:1,F:0};
var gpa = baseGrades[grade.charAt(0)];
gpa = grade.charAt(1) == "+" ? gpa += .5 : gpa;
gpa = grade.charAt(1) == "-" ? gpa -= .5 : gpa;
return gpa;
Dave -
Head Developer
www.blurredistinction.com
Adobe Community Expert
http://www.adobe.com/communities/experts/

Similar Messages

  • What is  meant by " Grade Point Average "?The following answer is correct?

    what is  meant by " Grade Point Average "?
    Grade Point Average = grades for assignments and then using the points/grades of classes. Is it correct?
    Thanks and Regards
    mohideen

    Grade Point Average (GPA) is typically a term used in upper schools and universities. It is the average of the grades of all your classes. 4 is the top GPA.
    Regards,
    Brandye Barrington
    Certification Forum Moderator

  • Please help me find out my code..I am using msg ACCept and Reject

    Please anyone help me...
    I am using MSG ACCEPT and REJECT...
    but my code when I execute it...it keep show out MSG REJECT...
    Please help me...Thanks a lot....
    public class Addmission
    public static void main(String[] args) throws Exception
    char Message;
    double GPA = 3.0;
    int ATS = 60;
    int ATScore = 80;
    System.out.println("Enter your Grade Point Average");
    GPA = (char)System.in.read();
    System.out.println("Enter your Addmission Test Score");
    ATS =(char)System.in.read();
    System.in.read(); System.in.read();
         if(GPA >= 3.0 && ATS == 60)
    System.out.println("Accept");
    if(GPA <= 3.0 && ATScore == 80)
    System.out.println("Accept");
    else
    System.out.println("Reject");

    I need to do like... but my code doens't show msg "Accept" it keep going to show "REJECT"
    Could anyone help me out?
    Print the msg "Accept" if the student has any of the following:
    * A grade point average of 3.0 or above and admission test score of at least 60
    * A grade point average of below 3.0 and an admission test score of at least 80.If the student doesn't meet either of the qualification criteria, print "Reject"
    public class Addmission
    public static void main(String[] args) throws Exception
    char Message;
    double GPA = 3.0;
    int ATS = 60;
    int ATScore = 80;
    System.out.println("Enter your Grade Point Average");
    GPA = (char)System.in.read();
    System.out.println("Enter your Addmission Test Score");
    ATS =(char)System.in.read();
    System.in.read(); System.in.read();
    if(GPA >= 3.0 && ATS == 60)
    System.out.println("Accept");
    if(GPA <= 3.0 && ATScore == 80)
    System.out.println("Accept");
    else
    System.out.println("Reject");

  • Please help me out with my code I am writing MSG ACCEPT & REJECT

    Please anyone help me...
    I am using MSG ACCEPT and REJECT...
    but my code when I execute it...it keep show out MSG REJECT...
    Please help me...Thanks a lot....
    public class Addmission
    public static void main(String[] args) throws Exception
    char Message;
    double GPA = 3.0;
    int ATS = 60;
    int ATScore = 80;
    System.out.println("Enter your Grade Point Average");
    GPA = (char)System.in.read();
    System.out.println("Enter your Addmission Test Score");
    ATS =(char)System.in.read();
    System.in.read(); System.in.read();
         if(GPA >= 3.0 && ATS == 60)
    System.out.println("Accept");
    if(GPA <= 3.0 && ATScore == 80)
    System.out.println("Accept");
    else
    System.out.println("Reject");

    see the implementaiton of readAFloat() ...
    implementation of readAnInt() is left as an exercise to you.
    cheers
    public class Addmission
    public static void main(String[] args) throws Exception
    char Message;
    double GPA = 3.0;
    int ATS = 60;
    int ATScore = 80;
    System.out.println("Enter your Grade Point Average");
    GPA = readAFloat();
    System.out.println("Enter your Addmission Test Score");
    ATS = readAnInt();
    System.out.println(" Your GPA ["+GPA+"]");
    System.out.println(" Your ATS ["+ATS+"]");
    if(GPA >= 3.0 && ATS == 60)
    System.out.println("Accept");
    if(GPA <= 3.0 && ATScore == 80)
    System.out.println("Accept");
    else
    System.out.println("Reject");
    public static float readAFloat() throws Exception {
         byte ba[]=new byte[10];
         int len;
         len=System.in.read(ba, 0, ba.length);
         String s = new String(ba, 0, len);
         float f=Float.parseFloat(s);
         return(f);
    public static int readAnInt() throws Exception {
         return 80;

  • Programming project: does this code look clean enough to turn in?

    Hi, i was just wanting to know people's opinion on the format of my classes below, i haven't done much java programming and I just want to make sure that this program is easily understood. I will not be able to respond, because I have to wake up in 3 hours for school. So thanks in advance, I will be reading this tomorrow, to see your suggestions, thank you.
    here is the scholar class, it is the class that i made to create a scholar(student object) that will be applying for a scholarship and the grades are entered in the ScholarTester class.
    I could've done things differently and easier but the professor strictly called for it to be exactly as he stated. I came up with a better, less tedious way, but i couldn't use it. My way was to create a method to randomly generate grades and values to determine the major, but my prof. saw it and made me implement everything in ScholarTester. Also neither of the students will receive the scholarship, that will be determined in project 2 my professor said.
    package project1;
    import java.util.*;
    * @author Kevin
    public class Scholar implements Comparable {
        // private variables
        private String fullName;
        private double gradePointAverage;
        private int essayScore;
        private int creditHours;
        private boolean scienceMajor;
        private double totalScore;
           // constructor for a Scholar object
            public Scholar(String myFullName, double myGradePointAverage, int myEssayScore,
                           int myCreditHours, boolean isScienceMajor){
                    this.fullName = myFullName;
                    this.gradePointAverage = myGradePointAverage;
                    this.essayScore = myEssayScore;
                    this.creditHours = myCreditHours;
                    this.scienceMajor = isScienceMajor;
            // returns a Scholar object's fullname
            public String getFullName(){
                return fullName;
            // returns a Scholar object's gpa
            public double getGradePointAverage(){
                return gradePointAverage;
            // returns a Scholar object's essay score
            public int getEssayScore(){
                return essayScore;
            /// returns a Scholar object's credit hours
            public int getCreditHours(){
                return creditHours;
            // retruns if a Scholar object is a science major or not
            public boolean getScienceMajor(){
                return scienceMajor;
            // sets a Scholar object's full name
            public String setFullName(String lastName, String firstName){
               fullName = lastName + ", " + firstName;
               return fullName;
            // sets a Scholar object's gpa
            public double setGradePointAverage(double a){
                gradePointAverage = a;
                return gradePointAverage;
            // sets a Scholar object's gpa
            public int setEssayScore(int a){
                essayScore = a;
                return essayScore;
            // sets a Scholar object's credit hours
            public int setCreditHours(int a){
                creditHours = a;
                return creditHours;
            // sets a Scholar's major to a science major or not a science major
            public boolean setScienceMajor(boolean a){
                scienceMajor = a;
                return scienceMajor;
            // calculates a Scholar object's score
            public double getScore(){
                totalScore = (gradePointAverage*5) + essayScore;
                if (scienceMajor == true)
                    totalScore += .5;
                if (creditHours >= 60 && creditHours <90)
                    totalScore += .5;
                else if (creditHours >= 90)
                    totalScore += .75;
                return totalScore;
            // compares two scholar objects.
            public int compareTo(Object obj){
                Scholar otherObj = (Scholar)obj;
                double result = getScore() - otherObj.getScore();
                if (result > 0)
                    return 1;
                else if (result < 0)
                    return -1;
                return 0;
            // returns the highest scoring of two Scholar objects
            public static Scholar max(Scholar s1, Scholar s2){
                if (s1.getScore() > s2.getScore())
                    System.out.println(s1.getFullName() + " scored higher than " +
                                       s2.getFullName() + ".\n");
                else
                   System.out.println(s2.getFullName() + " scored higher than " +
                                       s1.getFullName() + ".\n");
                return null;
            // returns the highest of 3 student objects
            public static Scholar max(Scholar s1, Scholar s2, Scholar s3){
                if (s1.getScore() > s2.getScore() && s1.getScore() > s3.getScore())
                    System.out.println(s1.getFullName() + " scored the highest" +
                            " out of all three students.");
                else if (s2.getScore() > s1.getScore() && s2.getScore() > s3.getScore())
                    System.out.println(s2.getFullName() + " scored the highest" +
                            " out of all three students.");
                else if (s3.getScore() > s2.getScore() && s3.getScore() > s1.getScore())
                    System.out.println(s3.getFullName() + " scored the highest" +
                            " out of the three students.");
                return null;
            // toString method for a Scholar object
            public String toString(){
                return  "Student name: " + fullName + " -" + " Grade Point Average: "
                        + gradePointAverage  + ". " + "Essay Score: " + essayScore + "."
                        + " Credit Hours: " + creditHours + ". "  +  " Science major: "
                        + scienceMajor + ".";
    }here's the ScholarTester class:
    package project1;
    import java.util.*;
    * This program creates Scholar objects that are applying for a scholarship
    * @author Kevin
    public class ScholarTester {
    public static void main(String [] args){
    System.out.println("This program was written by Kevin Brown. \n");
    System.out.println("--------Part 1--------\n");
    // attributes for a scholar object named abraham
    double abrahamGpa;
    int abrahamEssayScore;
    int abrahamCreditHours;
    int scienceMajorValueAbraham;
    boolean abrahamIsScienceMajor;
        // random numbers used for each scholar object.
        Random doubleGpa = new Random();
        Random intGpa = new Random();
        Random essayScore = new Random();
        Random creditHours = new Random();
        Random scienceMajor = new Random();
            // randomly creates abraham's statistics
            abrahamGpa = doubleGpa.nextDouble() + intGpa.nextInt(4);
            abrahamEssayScore = essayScore.nextInt(6);
            abrahamCreditHours = creditHours.nextInt(121);
            scienceMajorValueAbraham = scienceMajor.nextInt(2);
                if (scienceMajorValueAbraham == 0)
                 abrahamIsScienceMajor = true;
                else
                 abrahamIsScienceMajor = false;
    Scholar abraham = new Scholar("Lincoln, Abraham", abrahamGpa,
                                      abrahamEssayScore, abrahamCreditHours,
                                      abrahamIsScienceMajor);
    System.out.println(abraham);
    double georgeGpa;
    int georgeEssayScore;
    int georgeCreditHours;
    int scienceMajorValueGeorge;
    boolean georgeIsScienceMajor;
        // randomly creates george's statistics
        georgeGpa = doubleGpa.nextDouble() + intGpa.nextInt(4);
        georgeEssayScore = essayScore.nextInt(6);
        georgeCreditHours = creditHours.nextInt(131);
        scienceMajorValueGeorge = scienceMajor.nextInt(2);
             if (scienceMajorValueGeorge == 0)
                 georgeIsScienceMajor = true;
             else
                 georgeIsScienceMajor = false;
    // new scholar object is created from the existing attributes
    Scholar george = new Scholar("Bush, George",  georgeGpa, georgeEssayScore,
                                          georgeCreditHours, georgeIsScienceMajor);
    System.out.println(george + "\n");
    System.out.println("--------Part 2--------\n");
    System.out.println(abraham.getFullName() + " scored " + abraham.getScore() + ".");
    System.out.println(george.getFullName() + " scored " + george.getScore() + ".\n");
    System.out.println("--------Part 3--------\n");
    /* comparing george bush and abraham lincoln's scores and printing them out to
             show that the compareTo method is working*/
             System.out.println(abraham.getFullName() + " scored "
                                + abraham.getScore() + ".");
             System.out.println(george.getFullName() + " scored "
                                + george.getScore() + ".\n");
    if(abraham.compareTo(george) == 1)
        System.out.println(abraham.getFullName() + " scored higher than " +
                george.getFullName() + ".\n");
    else
        System.out.println(george.getFullName() + " scored higher than " +
                abraham.getFullName() + ".\n");
    System.out.println("--------Part 4--------\n");
        // prints out scores to show proof that the Scholar.max method is working right.
        System.out.println(abraham.getFullName() + " scored "
                           + abraham.getScore() + ".");
        System.out.println(george.getFullName() + " scored "
                           + george.getScore() + ".\n");
        Scholar.max(abraham, george); // maximum score between abraham and george.
    // variables for a scholar object named thomas.
        double thomasGpa;
        int thomasEssayScore;
        int thomasCreditHours;
        int scienceMajorValueThomas;
        boolean thomasIsScienceMajor;
        // randomly creates thomas' statistics
            thomasGpa = doubleGpa.nextDouble() + intGpa.nextInt(4);
            thomasEssayScore = essayScore.nextInt(6);
            thomasCreditHours = creditHours.nextInt(131);
            scienceMajorValueThomas = scienceMajor.nextInt(2);
                 if (scienceMajorValueThomas == 0)
                     thomasIsScienceMajor = true;
                 else
                 thomasIsScienceMajor = false;
             // new scholar object created from existing attributes
             Scholar thomas = new Scholar("Jefferson, Thomas", thomasGpa, thomasEssayScore,
                                          thomasCreditHours, thomasIsScienceMajor);
             System.out.println("New student added - " + thomas + "\n");
             // returns all 3 students scores to show proof that the Scholar.max method is working right
             System.out.println(thomas.getFullName() + " scored " + thomas.getScore());
             System.out.println(abraham.getFullName() + " scored " + abraham.getScore());
             System.out.println(george.getFullName() + " scored " + george.getScore() + "\n");
             // highest score of all three scholars
             Scholar.max(abraham, george, thomas);
    }Thanks for reading this long and boring project.

    On comments: don't include a comment that just repeats syntax:
    // constructor for a Scholar object
    public Scholar(String myFullName, ...Anyone knowing Java syntax doesn't need that comment and gains nothing
    from its presence, and anyone not knowing Java syntax shouldn't be reading
    a listing.
    On parameter names: a isn't very imaginative or prescriptive. (See next code.)
    On setters returning the argument:
    public int setCreditHours(int creditHours ){
        this.creditHours = creditHours ;
        return creditHours;
    }1. Most people keep it simple and use a void return type.
    2, The next most common convention is to return this:
    public Scholar setCreditHours(int creditHours){
        this.creditHours = creditHours ;
        return this;
    }Then you can chain calls, which is occasionally useful:
    scholar.setCreditHours(4).setEssayScore(2);3. If you insist on returning the argument, note that this is a one-liner:
    public in setCreditHours(int creditHours){
        return this.creditHours = creditHours ;
    }

  • Help with constuctor, need to rewrite program with this constructor

    i need to use this constructor for my Scholar class:
    public Scholar(String fullName, double gradePointAverage, int essayScore, boolean scienceMajor){here is the project that i'm doing:
    http://www.cs.utsa.edu/~javalab/cs17.../project1.html
    here's my code for the Scholar class:package project1;
    import java.util.*;
    public class Scholar implements Comparable {
        private static Random rand;
        private String fullName;
        private double gradePointAverage;
        private int essayScore;
        private int creditHours;
        private boolean scienceMajor;
        private String lastName;
        private String firstName;
        private double totalScore;
        /** Creates a new instance of Scholar */
            public Scholar(String lastName, String firstName){
                    this.fullName = lastName + ", " + firstName;
                    this.gradePointAverage = gradePointAverage;
                    this.essayScore = essayScore;
                    this.creditHours = creditHours;
                    this.scienceMajor = scienceMajor;
                    this.rand = new Random();
            public String getFullName(){
                return fullName;
            public double getGradePointAverage(){
                return gradePointAverage;
            public int getEssayScore(){
                return essayScore;
            public int getCreditHours(){
                return creditHours;
            public boolean getScienceMajor(){
                return scienceMajor;
            public String setFullName(String lastName, String firstName){
               fullName = lastName + ", " + firstName;
               return fullName;
            public double setGradePointAverage(double a){
                gradePointAverage = a;
                return gradePointAverage;
            public int setEssayScore(int a){
                essayScore = a;
                return essayScore;
            public int setCreditHours(int a){
                creditHours = a;
                return creditHours;
            public boolean setScienceMajor(boolean a){
                scienceMajor = a;
                return scienceMajor;
            public void scholarship(){
                Random doubleGrade = new Random ();
                Random intGrade = new Random ();
                gradePointAverage = doubleGrade.nextDouble() + intGrade.nextInt(4);
                Random score = new Random();
                essayScore = score.nextInt(6);
                Random hours = new Random();
                creditHours = hours.nextInt(137);
                Random major = new Random();
                int num1 = major.nextInt(3);
                if (num1 == 0)
                    scienceMajor = true;
                else
                    scienceMajor = false;
            public double getScore(){
                totalScore = (gradePointAverage*5) + essayScore;
                if (scienceMajor == true)
                    totalScore += .5;
                if (creditHours >= 60 && creditHours <90)
                    totalScore += .5;
                else if (creditHours >= 90)
                    totalScore += .75;
                return totalScore;
            public int compareTo(Object obj){
                Scholar otherObj = (Scholar)obj;
                double result = getScore() - otherObj.getScore();
                if (result > 0)
                    return 1;
                else if (result < 0)
                    return -1;
                return 0;
            public static Scholar max(Scholar s1, Scholar s2){
                if (s1.getScore() > s2.getScore())
                    System.out.println(s1.getFullName() + " scored higher than " +
                            s2.getFullName() + ".\n");
                else
                    System.out.println(s2.getFullName() + " scored higher than " +
                            s1.getFullName() + ".\n");
                return null;
            public static Scholar max(Scholar s1, Scholar s2, Scholar s3){
                if (s1.getScore() > s2.getScore() && s1.getScore() > s3.getScore())
                    System.out.println(s1.getFullName() + " scored the highest" +
                            " out of all three students.");
                else if (s2.getScore() > s1.getScore() && s2.getScore() > s3.getScore())
                    System.out.println(s2.getFullName() + " scored the highest" +
                            " out of all three students.");
                else if (s3.getScore() > s2.getScore() && s3.getScore() > s1.getScore())
                    System.out.println(s3.getFullName() + " scored the highest" +
                            " out of all three students.");
                return null;
            public String toString(){
                return  "Student name: " + fullName + " -" + " Grade Point Average: "
                        + gradePointAverage  + ". " + "Essay Score: " + essayScore + "."
                        + " Credit Hours: " + creditHours + ". "  +  " Science major: "
                        + scienceMajor + ".";
    }here's my code for the ScholarTester class:package project1;
    import java.util.*;
    public class ScholarTester {
    public static void main(String [] args){
    System.out.println("This program was written by Kevin Brown. \n");
    System.out.println("--------Part 1--------\n");
    Scholar abraham = new Scholar("Lincoln", "Abraham");
    abraham.scholarship();
    System.out.println(abraham);
    /*kevin.setEssayScore(5);
    kevin.setGradePointAverage(4.0);
    kevin.setCreditHours(100);
    kevin.setFullName("Brown", "Kevin J");
    kevin.setScienceMajor(true);
    System.out.println(kevin);*/
    Scholar george = new Scholar("Bush", "George");
    george.scholarship();
    System.out.println(george + "\n");
    System.out.println("--------Part 2--------\n");
    System.out.println(abraham.getFullName() + abraham.getScore() + ".");
    System.out.println(george.getFullName() + george.getScore() + ".\n");
    System.out.println("--------Part 3--------\n");
    if(abraham.compareTo(george) == 1)
        System.out.println(abraham.getFullName() + " scored higher than " +
                abraham.getFullName() + ".\n");
    else
        System.out.println(abraham.getFullName() + " scored higher than " +
                abraham.getFullName() + ".\n");
    System.out.println("--------Part 4--------\n");
        Scholar.max(abraham, george);
        Scholar thomas = new Scholar("Jefferson", "Thomas");
        thomas.scholarship();
            System.out.println("New student added - " + thomas + "\n");
            System.out.println(abraham.getFullName() + " scored " +
                    abraham.getScore() + ".");
            System.out.println(george.getFullName() + " scored " +
                    george.getScore() + ".");
            System.out.println(thomas.getFullName() + " scored " +
                    thomas.getScore() + ".\n");
        Scholar.max(abraham, george, thomas);
    }everything runs like it should and the program is doing fine, i just need to change the format of the Scholar constructor and probably other things. Can someone please give me an idea how to fix this.
    Thanks for taking your time reading this.

    then don't reply if you're not going to read it, i
    just gave the url, Don't get snitty. I'm just informing you that most people here don't want to click a link and read your whole bloody assignment. If you want help, the burden is on you to make it as easy as possible for people to help you. I was only trying to inform you about what's more likely to get you help. If doing things your way is more important to you than increasing your chances of being helped, that's your prerogative.
    so you can get an idea on what
    it's about, and yeah i know how to add a constructor,
    that's very obvious, That's what I thought, but you seemed to be saying, "How do I add this c'tor?" That's why I was asking for clarification about what specific trouble you're having.
    i just want to know how to
    implement everything correctly, so don't start
    flaming people. I wasn't flaming you in the least. I was informing you of how to improve your chances of getting helped, and asking for clarification about what you're having trouble with.

  • HELP.....with some home work

    hey everyone.....i was wondering if any one can help me out......i am doing a project for school and need some help with my program......here is my program.....
    ....i am having trouble with trying to bring up the NameOfColleges array...i want to use the information that is in that array....in the main method.....i do not know how
    to bring it from the fillStudent method to the main.....i bold the stuff that i need help with....thanks in advance......
    import javax.swing.JOptionPane;
    public class Student {
         public java.util.Date getAcceptDate;
         public static void main(String[] args) {
              College[] student = new College[100];
              int count = 0;
              do {
                   student[count] = fillStudent();
                   count++;
              } while(JOptionPane.showConfirmDialog(null, "Is there another student?") == JOptionPane.YES_OPTION);
              *for(int i = 0; i < count; i++){*
    *               String output = "Date Aquired: " +student.todaysDate() + "\n\n" +*
    *                         "Student Name: " + student[i].getName() + "\n" +*
    *                         "Student GPA: " + student[i].getGPA();*
    *          for (int j = 0; j < NameOfColleges.length; j++){*
    *               String output2 = "College " + (j+1) + NameOfColleges[j] + "\n";*
         private static College fillStudent() {
              College one = new College();
              String name, collegeName;
              double GPA;
              int numOFcoll;
              name = JOptionPane.showInputDialog("Please enter the student's name:");
              one.setName(name);
              GPA = Double.parseDouble(JOptionPane.showInputDialog("Please enter " + name + "'s Grade Point Average: (example: 3.6"));
              while (GPA <= 0.0 || GPA >= 4.0){
                   do{
                        GPA = Double.parseDouble(JOptionPane.showInputDialog("ERROR!! The number must be between 0.0 and 4.0. Please enter " + name + "'s Grade Point Average:"));
                   }while (GPA <= 0.0 || GPA >= 4.0);
              one.setGPA(GPA);
              numOFcoll = Integer.parseInt(JOptionPane.showInputDialog("Please enter the number of colleges that " + name + " applied to: (example: 3)"));
              one.setNumofColl(numOFcoll);
              String[] NameOfColleges = new String[numOFcoll];
              for (int i = 0; i < NameOfColleges.length; i++){
                   collegeName = JOptionPane.showInputDialog("Please enter the name of college " + (i+1) +": ");
                   NameOfColleges[i] = collegeName;
              for (int j = 0; j < NameOfColleges.length; j++){
              if (JOptionPane.showConfirmDialog(null, "Did this student get accepted into " + NameOfColleges[j] +"?") == JOptionPane.YES_OPTION) {
                   one.setAccept(true);
              } else
                   one.setAccept(false);
              return one;

    dude dont mess up code like this. Think before you go for writing some code.

  • Help in assign-solve errors

    hi,
    I am new to java and and struggling with this program i have to complete for next week.
    I have create a person class. And a student class which inherit from person class.
    When compiling i get 2 errors.
    lec.java:126: non-static variable this cannot be referenced from a static context
                             std[i] = new Student("1","1",1);
    ^
    lec.java:90: inner classes cannot have static declarations
    public static void main(String Args[])throws IOException{
    Hope someone can help me in solving this problem :)
    the codes are:
    import java.io.*;
    //******************************************************8
    //******************************************************8
    //+++++++++++++++
    class Person{
         String Fullname;
         //String Empno;
    Person(String Fullname){//,String Empno
         this.Fullname=Fullname;
         //this.Empno=Empno;
    public void set_Fullname(String Fullname)
         this.Fullname=Fullname;
    //public void set_Empno(String Empno)
         //this.Empno=Empno;
    public String get_Fullname()
         return this.Fullname;
    //public String get_Empno()
         //return this.Empno;
    //+++++++++++++
    //++
    public class Student extends Person{
    private String StudentNo;
    private float grade;
    //Student(){};
    public Student(String Fullname, String StudentNo, float grade){
         super(Fullname);
         this.StudentNo=StudentNo;
         this.grade=grade;
    public void set_StudentNo(String StudentNo)
         this.StudentNo=StudentNo;
    public String get_StudentNo()
         return this.StudentNo;
    public void set_grade(float grade)
         this.grade=grade;
    public float get_grade()
         return this.grade;
    //************************************************main menu
    //77
    public class sophie
    public static void main(String Args[])throws IOException{
    BufferedReader br= new BufferedReader(new InputStreamReader (System.in));
    String str;
    int max=100;
    Student std[] = new Student[max]; //Declare 10 persons..
    int option,i;
    float grade;
    i=0;
    /**for (int i = 0; i<5; i++){
    System.out.println("************************");
    System.out.println("I AM STUDENT "+i);
    System.out.println(std.get_Surname());
    System.out.println(std[i].get_Othername());
    System.out.println(std[i].get_Course());
    System.out.println("************************");
    do {
    System.out.println("*************MAIN MENU ***********");
    System.out.println("1. ADD ENTITY");
    System.out.println("2. PRINT ALL ENTITY");
    System.out.println("3. PRINT SOCIAL EVENT LISTS");
    System.out.println("4. Exit");
    System.out.println("************************");
    System.out.println("PLEASE ENTER OPTION ::> ");
    str = br.readLine();
    option=Integer.parseInt(str);
    switch(option)
         case 1: {
              System.out.println("DISPLAY ADD MENU");
                        System.out.println("************************");
                             std[i] = new Student("1","1",1);
                             System.out.print("Please Enter Fullname::> ");
                             str = br.readLine();
                             std[i].set_Fullname(str);
                             System.out.print("Please Enter Student No::> ");
                             str = br.readLine();
                             std[i].set_StudentNo(str);
                             System.out.print("Please Enter average grade ::> ");
                             str = br.readLine();
                             grade= Float.parseFloat(str);
                             std[i].set_grade(grade);
                             System.out.println("************************");
              i=i+1;
              break;
              //nnnnnnnn
    //case for student
              //nnnnnnnn
         case 2:     {
                   System.out.println("YOU ARE IN OPTION PRINT ALL");
    for (int stdno = 0; stdno<i; stdno++)
    System.out.println("************************");
                   System.out.println("I AM STUDENT "+stdno);
                   System.out.println("Fullname ::> "+std[stdno].get_Fullname());
                   System.out.println("Student No ::> "+std[stdno].get_StudentNo());
                   System.out.println("Grade Point Average ::> "+std[stdno].get_grade());
                   System.out.println("************************");
                   break;
    case 3:
                   System.out.println("YOU ARE IN OPTION PRINT SOCIAL EVENTS");
    for (int stdno = 0; stdno<i; stdno++)
              if (std[stdno].get_grade()>3.7)
              System.out.println("************************");
                             System.out.println("I AM STUDENT "+stdno);
                             System.out.println("Fullname ::> "+std[stdno].get_Fullname());
                             System.out.println("Student No ::> "+std[stdno].get_StudentNo());
                             System.out.println("Grade point Average ::> "+std[stdno].get_grade());
                             System.out.println("************************");
              break;
    //+++++++++==
    }//end switch
    }while (option!=4);

    In addition to my previous suggestions (see http://forum.java.sun.com/thread.jsp?forum=54&thread=562390&tstart=0&trange=15), also ensure that all your brackets are matched. where are Person and Student classes located? try to put them in their own files, not where your main method is located.

  • Could every one help me with this? Thanks

    2. a. Write a program that prompts a professor to input grades for five different courses for 10 students. Prompt the professor to enter one grade at a time using the prompt �Enter grades for student #1� and �Enter grade #1�. Verify that the professor enter only A, B, C, D, or F. Use variables for the student numbers (1 through 10) and grade numbers (1 through 5). The class name is GradePoint.
    b. Modify the GradePoint program so that it calculates the grade point average (GPA) for each student. A student receives four grade points for an A, three grade points for a B, two grade points for a C, one grade point for a D, and zero grade point for an F. Store the grades and points in parallel arrays. Search the arrays to determine the points for the grade. Store the GPA for each student in another array. (Hint: Copy the GPA for each student to a different array by initializing the new array with GPAs from the other array.)
    c. Display the GPA scores from each of the two GPA arrays to verify that the GPAs were copied correctly. Identify which array the scores are from.

    I got A. but I don't know how to do B and C
    could everyone help me how to do B and C?
    here are my code in A.
    I hope I am doing right:
    here are my code in A.
    I hope I am doing right:
    public class GradePoint
    public static void main(String[] args) throws Exception
    char Grade;
    System.out.println("Enter grades for student #1");
    System.out.println("Enter A, B, C, D, or F");     
    System.out.println("\nEnter grades #1");
    Grade =(char)System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #2");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #2");
         Grade =(char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #3");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #3");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #4");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #4");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #5");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #5");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #6");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #6");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #7");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #7");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #8");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #8");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #9");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #9");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    System.out.println("Enter grades for student #10");
         System.out.println("Enter A, B, C, D, or F");
         System.out.println("Enter grades #10");
         Grade = (char)System.in.read();
         System.in.read();System.in.read();
    while(Grade != 'A' && Grade != 'B' && Grade != 'C' && Grade != 'D' && Grade != 'D')
              System.in.read(); System.in.read();
              System.out.println("Entry must be A or B or C or D or F!");
              Grade = (char)System.in.read();
    b. Modify the GradePoint program so that it calculates the grade point average (GPA) for each student. A student receives four grade points for an A, three grade points for a B, two grade points for a C, one grade point for a D, and zero grade point for an F. Store the grades and points in parallel arrays. Search the arrays to determine the points for the grade. Store the GPA for each student in another array. (Hint: Copy the GPA for each student to a different array by initializing the new array with GPAs from the other array.)
    c. Display the GPA scores from each of the two GPA arrays to verify that the GPAs were copied correctly. Identify which array the scores are from.

  • It disappeared my topic

    hi everyone!
    could you please help me with this exercise?
    i have one error message, but i can't solve it.
    - create a project named Student. Add fields to the Student class for an ID number, number of
    credit hours earned, and number of points earned. include methods to assign values to all fields.
    The Student class also has a field for grade point average. include a method to compute the grade
    point average field by dividing points by credit hours earned.write methods to display the values
    in each Student field.
    here goes my coding:
    public class Student
         int idNo = 111;
         double hrs = 0;
         double noOfPoints = 0;
         double grPoAve = 0;
         public void setNoOfPoints(double nrPoints)
              noOfPoints = nrPoints;
         public double getNoOfPoints()
              return noOfPoints;
         public void sethrs(double hours)
              hrs = hours;
         public double gethrs()
              return hrs;
         public double calcAverage(double points, double hours)
              double grPoAve = points/hours;
              return grPoAve;
         public void setcalcAverage(double gpa)
              grPoAve = gpa;
         public double getcalcAverage()
              return grPoAve;
         public void setidno(int idNumber)
              idNo = idNumber;
         public int getidno()
              return idNo;
         public static void main (String[] args)
              Student stnew = new Student();
              stnew.setNoOfPoints(555);
              stnew.sethrs(2);
              double grPoAve;
              grPoAve = calcAverage(stnew.getNoOfPoints(),stnew.gethrs());
              System.out.println("The student with number: " + stnew.getidno());
              System.out.println(" has " + stnew.gethrs() + "hours");
              System.out.println(" has accumulated " + stnew.getcalcAverage());
              System.out.println(" grade point average ");
    - if i use the above code i am getting this error:
    cannot reference member 'double calcAverage(double points, double hours)' without an object.
    the error message points to the fifth line in the main method.     
    error message:
    not enough arguments for method 'void Student.SetNoOfPoints(double nrPoints)'
    - if i use the following :
    grPoAve = calcAverage(stnew.setNoOfPoints,stnew.gethrs);
    i am getting this error:
    'stnew.setNoOfPoints' is not a field in class 'Student'
    help me please.
    thanks, Tuci

    Try this:
    molly% java Student
    The student with number: 111
    has 2.0hours
    has accumulated 277.5
    grade point average
    molly% cat Student.java
    public class Student {
        int idNo = 111;
        double hrs = 0;
        double noOfPoints = 0;
        double grPoAve = 0;
        public void setNoOfPoints(double nrPoints) {
            noOfPoints = nrPoints;
        public double getNoOfPoints() {
            return noOfPoints;
        public void sethrs(double hours) {
            hrs = hours;
        public double gethrs() {
            return hrs;
        public double calcAverage(double points, double hours) {
            double grPoAve = points/hours;
            return grPoAve;
        // added a set method
        public void setgrPoAve(double d) {
            grPoAve = d;
        public void setcalcAverage(double gpa) {
            grPoAve = gpa;
        public double getcalcAverage() {
            return grPoAve;
        public void setidno(int idNumber) {
            idNo = idNumber;
        public int getidno() {
            return idNo;
        public static void main (String[] args) {
            Student stnew = new Student();
            stnew.setNoOfPoints(555);
            stnew.sethrs(2);
            //use the set and gets
    stnew.setgrPoAve(stnew.calcAverage(stnew.getNoOfPoints(),stnew.gethrs()));
            System.out.println("The student with number: " + stnew.getidno());
            System.out.println(" has " + stnew.gethrs() + "hours");
            System.out.println(" has accumulated " + stnew.getcalcAverage());
            System.out.println(" grade point average ");

  • PI and PI calc for GPA/CGPA

    Hi All,
    I wanted to calculate GPA and CGPA. As far as my knowledge goes its a standard functionality delivered by SLcM. We have to just make sure that we have done the right configuration to assign the performance indices to particular Calculation Point.
    In my case i have created 4 performance indeces and assigned PI calc as given below:
                 Attempted Credits ==                                  CPA1 (Total attempted credit)
                 Earned Credits==                                        CPE1 (Total earned credits)
                 Grade Point Average==                              GPA1(Average Grade)                Filter=== Appraisal completed
                 Cummulative Grade Point Average==         GPA1(Average Grade)                Filter=== Average Grade
    I just wanted to know which PI calculation shall be assigned to GPA and CGPA? Whether assigned filters are correct or not?
    Is it necessary to assign parameters and filters to Performance Index?
    Regards
    Vinod Kumar

    Vinod, the PI to use for Sessional GPA and Cumulative GPA is the same: GPA. For the first one (Sessional GPA) you should be filtering by academic year/session and by the "Appraisal complete" if you want (yo are already using that filter).
    The Cumulative GPA should use the same PI (GPA), and filter just by "Appraisal complete" (in your scenario).
    You should check that the GPA PI standard calculation (the one provided by SAP) fits into your client's GPA calculation requirements. If it doesn't, you should copy that PI and make the necessary changes.
    Diego

  • Help.  new Java student

    Hi. Can anyone help me write a Java program that ask the user to input their class and the grade they think they will get in each class. Then find the grade point average for that user. it needs to use JOptionPane and display the classes, its grade, and the users grade point average

    Self-note: Class needs to ask what class, ask what grade in that class, get gradepoint average.
    If you're like me when I first took java and I started getting advice, though I heard terms like method/constructor/etc, I didn't truly start to understand it until way later.
    Does your teacher require you to use more than 1 class for this program and are you using an IDE (Eclipse, netbeans, etc)?
    Usually an IDE will give you options to complete a JOptionPane which saves your wrists some fatigue and helps you pick out what you need.
    Here's something you may consider starting out with:
    public class Grades{
    double grade;
    double gpa;
    String course;
    public static void main(String[] args) {
    course = JOptionPane.showInputDialog("Please enter the class name");
    grade = JOptionPane.showInputDialog("Please enter a grade of 1-100:");
    }What that does is declare three variables (grade, gpa, and class).
    Then it asks the user for their class name and a number grade from 1-100. (If your teacher isnt asking for anything specific like a letter grade then I would go with that)
    It takes the user's input and stores it into grade and gpa as shown to the left of the Joptionpane( ie. grade = )
    You'll probably want to make a loop and use a YES_NO_CANCEL Joptionpane (google for usage and ask for more help if you need help writing this)
    So that a student can enter as many grades as he wants before stopping the program.
    Then you'll have to take all those grades and get the average and assign a letter grade based on what the average is( im not sure exactly how GPA works but it's probably like if you have a grade of 90+ it's 4.0, 80+ is 3.0, etc etc)
    Good luck mate.

  • Could someone check my codeI am doing MSG Accept & Reject but Accpt not wor

    Please help me out with those codes...I am doing with it seem alright but I don't know why it doesn't work with Accept but it is keeping show in REJECT...please help me...THanks a lot....Flower....
    2. Write a program for a college��s admission office. Create variables to store a student��s numeric high school grade point average (for example, 3.2) and an admission test score. Print the message ��Accept�� if the student has any of the following:
    �h A grade point average of 3.0 or above an admission test score of at least 60
    �h A grade point average of below 3.0 and an admission test score of at least 80
    If the student doesn��t meet either of the qualification criteria, print ��Reject��.
    The class name is Admission.
    public class Addmission
    public static void main(String[] args) throws Exception
    char GPA;
    char ATS;
    System.out.println("Enter your Grade Point Average");
    GPA = (char)System.in.read();
    System.out.println("Enter your Addmission Test Score");
    ATS =(char)System.in.read();
    System.in.read(); System.in.read();
    if(GPA > 3.0 && ATS > 60)
    System.out.println("Accept");
    if(GPA < 3.0 && ATS >= 80)
    System.out.println("Accept" );
    else
    System.out.println("Reject");

    You'll have to read the values in differently. Read the values that the user enters as Strings, then convert them to a float (or double) and an int for GPA and ATS respectively. That way your compares will work right. The way you have it now to accepted you have to have an ATS higher than the '>' char, and there's no way to have GPA's that aren't ints. Also, if you put '3' in as your GPA, it gets converted to 51 because of they way your converting to chars.
    The way to do all this stuff has been covered many times in the forums so finding answers on how to do all I suggested should be easy. Good luck.

  • Could someone check my codes. I am doing If...else and msg....please check

    am doing the assignment. #A it is working ok...but I am adding the code for #B it won't work...could anyone help me with #B assignment?
    Thanks for your help alot...
    * A. Write a program named Balance.java that compares your checking account balance with your savings account balance (two doubles). Assign values to both variables and compare them, and then display either �Checking is higher� or �Checking is not higher�.
    public class Balance
    public static void main(String[] args) throws Exception
    char saving_Balance;
    char check_Balance;
    System.out.println("Enter Checking Balance" );
    check_Balance = (char)System.in.read();
    System.in.read(); System.in.read();
    System.out.println("Enter Saving Balance");
    saving_Balance = (char)System.in.read();
    System.in.read(); System.in.read();
    if(check_Balance > saving_Balance)
    System.out.println("Checking is higher");
    else
    System.out.println("Checking is not higher");
    B. Change the Balance.java program so that is compares your checking account balance and your savings account balance to less than zero. If the first balance is less than the second balance, and the first balance is greater than or equal to zero, then display the message �Both accounts in the black�.
    public class Balance
    public static void main(String[] args) throws Exception
    char saving_Balance;
    char check_Balance;
    System.out.println("Enter Checking Balance" );
    check_Balance = (char)System.in.read();
    System.in.read(); System.in.read();
    System.out.println("Enter Saving Balance");
    saving_Balance = (char)System.in.read();
    System.in.read(); System.in.read();
    if(check_Balance > saving_Balance)
    System.out.println("Checking is higher");
    else
    System.out.println("Checking is not higher");
    if(check_Balance >= 0 )
    System.out.println("Both accounts in the black");

    mchanO,
    Thanks for your help...but I tried your last codes it doesn't work like I want...sorry...but I am still glad for your help me ...
    Anyway see you around...
    Flower
    2. Write a program for a college��s admission office. Create variables to store a student��s numeric high school grade point average (for example, 3.2) and an admission test score. Print the message ��Accept�� if the student has any of the following:
    �h A grade point average of 3.0 or above an admission test score of at least 60
    �h A grade point average of below 3.0 and an admission test score of at least 80
    If the student doesn��t meet either of the qualification criteria, print ��Reject��.
    The class name is Admission.
    public class Addmission
    public static void main(String[] args) throws Exception
    char Message;
    char GPA;
    char ATS;
    System.out.println("Enter your Grade Point Average");
    GPA = (char)System.in.read();
    System.out.println("Enter your Addmission Test Score");
    ATS =(char)System.in.read();
    System.in.read(); System.in.read();
    if(GPA > 3.0 && ATS > 60)
    System.out.println("Accept");
    if(GPA < 3.0 && ATS >= 80)
    System.out.println("Accept" );
    else
    System.out.println("Reject");

  • Could someone check my code please

    COuld some one check for me...I think i am doing Part A ok...but I am sure in Part B and C....
    Thanks,
    Flower
    A. Write a program that prompts a professor to input grades for five different courses for 10 students. Prompt the professor to enter one grade at a time using the prompt �Enter grades for student #1� and �Enter grade #1�. Verify that the professor enter only A, B, C, D, or F. Use variables for the student numbers (1 through 10) and grade numbers (1 through 5). The class name is GradePoint.
    public class GradePoint
    public static void main(String[] args) throws Exception
    char[][] studentGrades = new char[10][];
    for(int student = 0; student < 10; ++student)
    studentGrades[student] = new char [5];
    for(int student = 0; student<10; ++student)
    System.out.println("Enter grades for student # " +(student + 1));
    for(int course = 0; course < 5; ++course)
    char grade;
    System.out.println("Enter grade # " + (course +1));
    System.out.println("Entry must be A or B or C or D or F!");
    grade = (char)System.in.read();
    System.in.read();System.in.read();
    B. Modify the GradePoint program so that it calculates the grade point average (GPA) for each student. A student receives four grade points for an A, three grade points for a B, two grade points for a C, one grade point for a D, and zero grade point for an F. Store the grades and points in parallel arrays. Search the arrays to determine the points for the grade. Store the GPA for each student in another array. (Hint: Copy the GPA for each student to a different array by initializing the new array with GPAs from the other array.)
    C. Display the GPA scores from each of the two GPA arrays to verify that the GPAs were copied correctly. Identify which array the scores are from.
    public class GradePointB
    static final double A = 4.0;
    static final double B = 3.0;
    static final double C = 2.0;
    static final double D = 1.0;
    static final double F = 0.0;
    public static void main(String[] args) throws Exception
    char[][] studentGrades = new char[10][];
    for(int student = 0; student < 10; ++student)
    studentGrades[student] = new char [5];
    for(int student = 0; student<10; ++student)
    System.out.println("Enter grades for student # " +(student + 1));
    for(int course = 0; course < 5; ++course)
    char grade;
    System.out.println("Enter grade # " + (course +1));
    System.out.println("Entry must be A or B or C or D or F!");
    grade = (char)System.in.read();
    System.in.read();System.in.read();
    if(grade == 'A')
    System.out.println("Grade Point Average:" + A);
    if(grade == 'B')
    System.out.println("Grade Point Average:" + B);
    if(grade == 'C')
    System.out.println("Grade Point Average:" + C);
    if(grade == 'D')
    System.out.println("Grade Point Average:" + D);
    if(grade == 'F')
    System.out.println("Grade Point Average:" + F);

    Try this for getting the correct character from the User:
    private char getUserChar (char[] canAccept)
         // Build up a list of the valid characters as a string, we will use it in 2 places...
         StringBuffer buf = new StringBuffer ();
         for (int i = 0; i < canAccept.length; i++)
              buf.append (canAccept);
    if (i < (canAccept.length - 1))
    buf.append (", ");
    // Build up an error string we use for when the User gets it wrong...
    StringBuffer errstr = new StringBuffer ("Input value must be one of: ");
    errstr.append (buf);
    // Not the best use of while here but not too bad...
    while (true)
    System.out.println ("Please enter a character [" + buf.toString () + "]");
    // Read a character from the User.
    char c = (char) System.in.read ();
    // Determine whether the character is one of those that we allow...
    for (int i = 0; i < canAccept.length; i++)
    if (c == canAccept[i])
    // It is one, cool...let's return, no more to do here...
    return c;
    // If we are here then they've got it wrong, output a message.
    System.out.println (errstr.toString ());
    And then usage would be simple:
    char[] grades = {'A', 'B', 'C', 'D', 'E', 'F'};
    char c = this.getUserChar (grades);Enjoy...

Maybe you are looking for

  • Syntax Error while activating 2LIS_04_P_ARBPL Transformation

    Dear all, While activating  2LIS_04_P_ARBPL Transformation activation , I am facing following  error while checking in Routine E:Field "COMM_STRUCTURE-TGTPROCCAP" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statem

  • Export items to Excel (or something)

    I am looking for a way to export items that I have used to mark up drawings. (ie: squares, circles, etc.) I need to have the PDF file gather the items and export them to something like Excel or something I can use to count the number and types. Does

  • Why can't I apply a cross dissolve between an after effects comp and black video in Premiere CS6

    I imported a 20 second composition from AE CS6 into Premiere Pro CS6 and would like to apply a cross dissolve transition between it and the media on either end of the AE clip. However, every time I try to apply the cross dissolve, it only gets applie

  • How to find and install icon in dock for access to Apple Mac OSX?

    Just next to my downloads and document stacks I had an icon Apple Mac OS X icon that when clicked automatically transferred me to Snow Leopard site at Apple. By mistake I removed it from dock but now I can't find this icon to re-install it. I looked

  • Error during creation of posting runnumber

    Hello there, I am trying to post a trip using transaction PRFI after the trip has been approved and settled and experiencing the error bellow. Two days ago, I was able to perform this transation PRFI and PRRW succesfully. Please advise. Leon *Error d