Answer:
Following are the method definition to this question:
public String notice_bill(double amount) //defining method
{
return this.name+", account number "+this.currAccNum+", please pay $"+amt; //return value.
}
Explanation:
In the given question some information is missing, that is example So, method definition to this question can be described as follows:
- In the above method definition a string method "notice_bill" is declared, which accepts a double value in its parameter, that is "amount".
- Inside the method, this keyword is used, that hold values and return its value as a message.
The organisation that would best aid families and choose the right products to buy would be the American Association of Family and Consumer Sciences. In addition, the institution is primarily composed of home economists wherein these professionals promote efficient consumer consumption of goods.
Answer:
Following are the error in the given program are explain in the explanation part .
Explanation:
The main() function call the function getMileage() function after that the control moves to the getMileage() definition of function. In this firstly declared the "mileage" variable after that it taking the input and module is finished we see that the "mileage" variable is local variable i,e it is declared inside the " Module getMileage() " and we prints in the main module that are not possible to correct these we used two technique.
Technique 1: Declared the mileage variable as the global variable that is accessible anywhere in the program.
Technique 2: We print the value of "mileage" inside the Module getMileage() in the program .