Answer:
just look up encyclopedias
Explanation:
Answer:
# include<iostream>
#include<conio.h>
using namespace std;
main()
{
float f, c;
cout<<"enter temperature in Fahrenheit ="
cin<<f;
c=(f-32)/1.8;
cout<<"/n Temperature in Celsius ="<<c;
getch();
}
Explanation:
The conversion formula from Fahrenheit to Celsius is given as:
C= (F-32) x 5/9
we take an input in Fahrenheit and put in above formula and covert it in Celsius.
You can use it to suggest edits for the document.
You can use it to make a note of clarification for someone else examining the document.
You can use it to cover up mistakes within the document.
That's what I think.
Answer:
me, americano and treasure box
Explanation:
Answer:
General purpose computers are designed to be able to perform variety of tasks when loaded with appropriate programs, while special purpose computers are designed to accomplish a single task.