Answer: c. active
An active close to a cover letter leads to more interviews, because you are contacting the employer. When creating a cover letter, you provide information about yourself and what your capabilities are, by having an active close to your cover letter, you're letting the reader know exactly what you want to do to help them with their endeavor. Having an active close will also allow the reader to get to know who you are and what you have to offer them.
Answer:
public class Main
{
public static void main(String[] args) {
int userNum = 40;
while(userNum > 1){
userNum /= 2;
System.out.print(userNum + " ");
}
}
}
Explanation:
*The code is in Java.
Initialize the userNum
Create a while loop that iterates while userNum is greater than 1. Inside the loop, divide the userNum by 2 and set it as userNum (same as typing userNum = userNum / 2;). Print the userNum
Basically, this loop will iterate until userNum becomes 1. It will keep dividing the userNum by 2 and print this value.
For the values that are smaller than 1 or even for 1, the program outputs nothing (Since the value is not greater than 1, the loop will not be executed).
Answer is :
=D3+A3-B3
These Cell address contain following statement:
D3= Olivia saving account balance
A3= Olivia 3 month income
B3= Olivia 3 month expense
so, Expense are also deducted from income and income is added into saving balance.
In this situation we are use this formula:
=D3+A3-B3