<span>si la sustancia es droga, cárcel</span>
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:
Following is the statement in the C language :
if(carYear < 1968)
printf("\nProbably has a few safety features.\n");
if(carYear > 1970 && carYear <=1991 )
printf("\nProbably has head rests.\n");
if(carYear > 1991 && carYear <=2002)
printf("\nProbably has anti-lock brakes\n.");
if(carYear > 2002)
printf("\nProbably has airbags.\n");
Explanation:
Following is the description of the statement:
- In the given question we used if block. The if block is only executed when their condition is true.
- if(carYear < 1968) In this we check we the value of "carYear" variable is less then 1968 then it prints "Probably has a few safety features." in the console window.
- if(carYear > 1970 && carYear <=1991) In this we check we the value of "carYear" variable is greater then 1970 and less then 1992 it prints "Probably has head rests" in the console window.
- if(carYear > 1991 && carYear <=2002 ) In this we check we the value of "carYear" variable is greater then 1991 and less then 2003 it prints "Probably has anti-lock brakes" in the console window.
- if(carYear > 2002) In this we check we the value of "carYear" variable is greater then 2002 then it prints "Probably has airbags" in the console window.
Answer: Desk checking
Explanation:
The desk checking is one of the type of informal way manual testing in which the programmer use this method for evaluating or checking the coding or the different types of algorithm logic in the system.
- It helps in identifying the errors in the program so that it can be executed properly without any interruption in the system.
- It is one of the effective way for the error detection and also known as the modern debugging tool.
According to the given question, the desk checking is the term which is used to refers to the programmers for reading the given program step by step each statement. Therefore, Desk checking is the correct answer.
Therefore, Desk checking is the correct answer.