Writing a business letter as if she gets her point across to the head of department then he could change the way they made the perfume so they would pass inspection and standard.
<span>3) .java
Let's look at the three options and see why they're right or wrong.
1) .class
This is the file extension that the java compiler used to the compiled output from the compiler. So it's the wrong answer.
2) .h
This is the file extension used for C and C++ header files. So once again, not the right answer.
3) .java
This is the correct extension for a java source file to be compiled.</span>
It is 20 to 25 days so c is correct
Answer:
The explanation to this question is given below in the explanation section.
Explanation:
#include <iostream>
#include <string>
using namespace std;
int main()
{
int score;
cout << "Enter Score: \n";
cin>>score;
if (score == 100)
//whether the value of the score variable is equal to 100
{
cout << "Perfect ";
//If so, it should print “Perfect”
}
else
{
cout << "Nice Try ";
}
}