answersLogoWhite

0


Best Answer

320 f = 160 c

User Avatar

Wiki User

7y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: At what temperature reading of Fahrenheit scale will be double the reading on the Celsius scale?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What temperature will the reading on the Fahrenheit scale be double of the reading on the Celsius scale?

160 Celsius = 320 Fahrenheit


Is there a Fahrenheit temperature that is double a Celsius temperature?

yes


At what temperature is Fahrenheit double Celsius?

At approximately -12.3 °F the equivalent temperature in Celsius is -24.6 °C. This is the only temperature at which the value of the temperature in Celsius is double that of the equivalent Fahrenheit temperature. To be more precise, the temperatures are -12 4/13 °F and -24 8/13 °C.


What is the formula in changing the temperature to Fahrenheit?

To convert from celsius to fahrenheit, you multiply by 9/5 and add 32. A rough conversion is to double and add 30.


What temperature in degrees Fahrenheit would a fixed volume of gas need to be heated to in order to double its pressure if it starts out at?

To double the pressure, you will need double the temperature. Note that you have to use the absolute temperature (usually Kelvin) for this calculation. So, for example, if you start off at 100 degrees Celsius, you convert that to Kelvin (add 273 to convert from Celsius to Kelvin), double the number to get double the temperature, then convert back to Celsius (subtract 273 from the previous result).Similarly, if you start out at a certain number of degrees Fahrenheit, you must first convert that to Kelvin, then double the result, and finally convert this last result back to Fahrenheit.


How do you write a program in C to convert temperatures between Fahrenheit and Celsius?

Code Example:/********************************************************************************* MODULE: main.c******************************************************************************** DESCRIPTION:* Program that takes a temperature from the user on the command line, then* displays that temperature as celsius converted to Fahrenheit, and* as Fahrenheit converted to celsius.********************************************************************************/#include #define iARGS_REQUIRED 2#define iARG_EXE 0#define iARG_INPUT 1static floatfCelsiusToFahrenheit( float fCelsius );static floatfFahrenheitToCelsius( float fFahrenheit );/********************************************************************************* MAIN********************************************************************************/intmain( int iArgc, char *acpArgv[] ){ float fFahrenheit = 0.0; float fCelsius = 0.0; float fInput = 0.0; /* user didn't provide a temperature on the command line */ if(iArgc != iARGS_REQUIRED) { fprintf(stderr, "Usage: %s [temperature]\n", acpArgv[iARG_EXE]); return 0; } /* read the given temperature into the fInput variable */ sscanf(acpArgv[iARG_INPUT], "%f", &fInput); /* fInput treated as celsius and converted to Fahrenheit */ fFahrenheit = fCelsiusToFahrenheit(fInput); /* fInput treated as Fahrenheit and converted to celsius */ fCelsius = fFahrenheitToCelsius(fInput); printf( "%.2f degrees Fahrenheit is %.2f degrees celsius.\n", fInput, fCelsius ); printf( "%.2f degrees celsius is %.2f degrees Fahrenheit.\n", fInput, fFahrenheit ); return 0;}/********************************************************************************* STATIC FUNCTION: fCelsiusToFahrenheit******************************************************************************** DESCRIPTION:* Converts a celsius temperature to Fahrenheit.** PARAMETERS:* fCelsius: The temperature in celsius to convert.** RETURNS:* fCelsius converted to Fahrenheit.********************************************************************************/static floatfCelsiusToFahrenheit( float fCelsius ){ return (fCelsius * 1.8) + 32;}/********************************************************************************* STATIC FUNCTION: fFahrenheitToCelsius******************************************************************************** DESCRIPTION:* Converts a Fahrenheit temperature to celsius.** PARAMETERS:* fFahrenheit: The temperature in Fahrenheit to convert.** RETURNS:* fFahrenheit converted to celsius.********************************************************************************/static floatfFahrenheitToCelsius( float fFahrenheit ){ return (fFahrenheit - 32) / 1.8;}


What is 6.5 Celsius in Fahrenheit?

Start by taking the number in Celsius and multiply it by 9. Then divide that number by 5, and then add 32. This is how you convert Celsius to Fahrenheit or use the equation F = (9/5)C + 32In this case, the answer is about 43.7 degrees Fahrenheit.


Convert the formula of Celsius to Fahrenheit in operator precedence in java?

import java.util.Scanner; public class Fahrenheit { public static void main(String args[]) { Scanner s=new Scanner(System.in); System.out.println("Enter the temperature in Celsius scale"); double f= s.nextDouble(); double c; c=(f-32)/1.8; System.out.println("Fahrenheit"); System.out.println( f); } }


how to write a function that takes one argument F for Fahrenheit and returns the result in Celsius c the formula for the conversion is c plus F-3259?

double celsius (double fahrenheit) { return (fahrenheit - 32.) * 5. / 9.; }


How cold has it to be to make water freeze?

32 degrees Fahrenheit. to convert Fahrenheit to Celsius, double it and add 32, it works roughly.


Charles's laws temperature are measured in?

Kelvin all measurements have to be recorded in kelvin instead of degrees Celsius because if you ever have to double the temperature and the temperature happens to be a negative number it will only become more negative and therefore not really exist so the all measurements of the average kinetic energy have to be in Kelvin.


Write a programme in c to convert Fahrenheit to celsius and vice versa?

double celsiusToFahrenheit(double degreesC) { return degreesC * 9.0 / 5.0 + 32.0; } double fahrenheitToCelsius(double degreesF) { return (degreesF - 32.0) * 5.0 / 9.0; } Or instead of having to divide and multiply you can simply use (Celsius +32)1.8. (C+32)1.8 Fahrenheit -32 divided by 1.8. F-32/1.8.