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:
Question is answered using python:
num = int(input("User Input: "))
for i in range(3):
num = num+1
print("Number is now "+str(num))
for i in range(3):
num = num-1
print("Number is now "+str(num))
Explanation:
This line prompts user for input
num = int(input("User Input: "))
The following iterates from 1 to 3
for i in range(3):
This increments user input each time
num = num+1
This prints the value of num after increment
print("Number is now "+str(num))
The following iterates from 1 to 3
for i in range(3):
This decrements the value of num
num = num-1
This prints the value of num after decrement
print("Number is now "+str(num))
The answer is the first one
<span>When you examine a computer chip under a microscope, you will see </span>integrated circuits.