Answer:
decide how a website should look and
test a software program to ensure that the visual elements are working
Explanation:
i just did it
1 meters is = 100 centimeters
She should report it to the superviser
Answer:
"void" is the correct answer for the given question.
Explanation:
In the function body the value of balance variable is not return that means we use void return type .The void return type is used when the function does not return any value .
If the function are int return type that means it return "integer value ".
if the function are double return type that means it return the "double value" .
The complete implementation of this method is
public void deposit(double amount) // function definition
{
balance = balance + amount; // statement
}