Question: Question 1 Write the method header that goes with this method comment for a raiseSalary() method: /** * Raises the salary of the employee. *

Question 1

Write the method header that goes with this method comment for a raiseSalary() method:

/**

* Raises the salary of the employee.

* @param percentRaise salary percentage raise.

*/

Question 2

Consider the following invocation of the deposit method:

mySavings.deposit(250);

What is the explicit parameter?

Question 3

Assume the method below has been added to the BankAccount class.

public void transfer(BankAccount source, double amount)

{

balance = balance + amount;

source.balance = source.balance amount;

}

What will be output from the following statements that use the revised BankAccount class?

BankAccount first = new BankAccount(100.0);

BankAccount second = new BankAccount(300.0);

first.transfer(second, 50.0);

System.out.println(first.getBalance() + " " + second.getBalance());

Question 4

Write the constructor header for a Player class that accepts the player's name as its only parameter (called "name").

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!