Answer:
Computer output simply put is any data generated by the computer or feedback gotten from the computer. Output can take many forms, but there are 2 major categories:
- Soft copy output e.g text viewed on a computer screen
- Hard copy output e.g printouts
Explanation:
sum of 10 natural number is 55
I really think its false because of the task language you need to know
A brute force attack. Ciphers should be sufficiently complex for this to be ever successful.
Answer:
The algorithm for the conversion of temperature from Fahrenheit to Celsius is as follows:
Read the temperature given in degree Fahrenheit.
Convert the temperature in Fahrenheit into Celsius using the formula : C=5/9*(F-32)
Print the Fahrenheit and Celsius value of temperature.
End
Explanation:
The algorithm for the conversion of temperature from Fahrenheit to Celsius is as follows:
Read the temperature given in degree Fahrenheit.
Convert the temperature in Fahrenheit into Celsius using the formula : C=5/9*(F-32)
Print the Fahrenheit and Celsius value of temperature.
End
The code for the same is -
void main ( )
{
float a , b ;
cout<<" enter temperature in Fahrenhite : "<<endl;
cin>> b;
a = ( b - 32 ) * ( 5 / 9 ) ;
cout << " Fahrenheit = << b <<"Centigrade = " << a ;
}