Solved

Public Static Void PredictRaise(double Salary)

Question 10

Essay

public static void predictRaise(double salary)
{
double newSalary;
final double RAISE_RATE = 1.10;
newSalary = salary * RAISE_RATE;
System.out.println("Current salary: " +
salary + " After raise: " +
newSalary);
}
In the above code, what are the parameter data type and parameter identifier? How do you identify each?

Correct Answer:

verifed

Verified

When you write the method declaration fo...

View Answer

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

Related Questions