Waiting for answer This question has not been answered yet. You can hire a professional tutor to get the answer.

QUESTION

Consider the following class Grade:

Consider the following class Grade:

public class Grade

{

   private char letterGrade;

   public Grade( char 1g )

   {

      letterGrade = 1g;

   }

   public char getLetterGrade( )

   {

      return letterGrade;

   }

   public void setLetterGrade( char 1g)

   {

      letterGrade = 1g;

   }

}

In the main method of the class GradeClient, you have coded: Grade g = new Grade ( "A" ); //line 10

When you compile, you get the following message:

GradeClient.java:10: error: incompatible types: String cannot be converted to char

Grade g = new Grade ( "A" ); // line 10

Note: Some messages have been simplified; recompile with -Xdiags: verbose to get full output

1 error

Explain what the problem is and how to fix it. 

Show more
LEARN MORE EFFECTIVELY AND GET BETTER GRADES!
Ask a Question