Question 1
Draw a flowchart that takes a temperature in Celsius as input, converts it to Fahrenheit, and outputs the result. The formula for the conversion is Fahrenheit = (Celsius * 9/5) + 32.
Answer 1
Start
Input Celsius
Fahrenheit = (Celsius * 9/5) + 32
Output Result
End