Solved

Public Class YourGrade

Question 45

Essay

public class YourGrade
{
    public static void main(String[] args)
    {
       int projectPoints = 89;
       System.out.print("Your grade for this class is ");
       System.out.print(projectPoints);
       System.out.println("%");
     }
}
Given the above code, what will be the output at the command prompt?

Correct Answer:

verifed

Verified

Output will be as fo...

View Answer

Unlock this answer now
Get Access to more Verified Answers free of charge

Related Questions