Your computer needs storage because the processor needs a place to perform its magic — a scratchpad for mad doodles, if you will. All computers need storage. ... Memory is where the processor does its work, where programs run, and where information is stored while it's being worked on.
And why five sentences?
Answer:
Python is basically a type of coding language use to program.
Explanation:
Answer:
We can give the any integer value between 10 to 100 then it display the message "That number is acceptable."
Explanation:
In the given code the "number" variable takes an user input via cin .After taking user input it check the condition of if block that the user input is between the range of 10 to 100 .if this condition is true then the statement of if block will be executed i.e That number is acceptable otherwise else block will be executed That number is not acceptable.
following are the code in c++
#include <iostream> // header file
using namespace std;
int main() // main
{
int number; // variable
cin >> number; // taking input
if (number > 10 && number < 100) // if block
cout << "That number is acceptable.";
else
cout << "That number is not acceptable.";
return 0;
}
Output:
66
That number is acceptable.
456
That number is not acceptable.
I think that C. cloud computing sounds like the best answer.