Answer:
int main()
{
int speed = 25, time = 15;
int distance = speed * time;
cout<<"The distance is: " << distance <<endl;
return 0;
}
Explanation:
- Initialize the variable <em>speed</em> as 25 and <em>time</em> as 15
- Calculate the <em>distance</em> by multiplying <em>speed</em> and <em>time</em>
- Print the <em>distance</em>
Answer:
Most likely computer science, however we cant see the options so i dont know but if that is not one of the options then the answer will most likely be engineering
Explanation:
Answer:
The development of a simplified alphabet.
Explanation:
Answer:
A variable declaration is a name given to a memory location. It is the basic unit of storage in a program.