answersLogoWhite

0


Best Answer

-40

As we have formula for converting temperature C= F-32x5/9

so if we put the value -40 in Fahrenheit

C=-40-32x5/9

C=-72x5/9

C=-360/9

C=-40

and in other formula F=Cx9/5+32

so put the same value

F=-40x9/5+32

F=-360/5+32

F=-72+32

F=-40

So here prove that -40C=-40F

what is this in english i just have to ask

User Avatar

Wiki User

12y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: At what temperature will Fahrenheit and Celsius thermometers display the same reading?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Math & Arithmetic

How do adjust my LG refrigerator to display the temperature in Fahrenheit and not in Celsius?

Press and hold the "Refrigerator" and "Freezer" buttons simultaneously for 5 seconds.


Convert Fahrenheit to Celsius Codes in COBOL?

Identification division. Program-id. Environment division. Data division. Working-storage section. 77 f pic 9(3). 77 c pic 9(3)v99. 77 p pic z(3).z(2). Procedure division. Main-para. Display " enter fahrenheit temperature ". Accept f. Compute c rounded = ( f - 32 ) * 5 / 9. Move c to p. Display " temperature in degree celsius " p. Stop run.


How do you change from c to f on braun 6023?

From a google search - took 3 seconds to find Changing the temperature scale Your Braun ThermoScan is shipped with the Celsius (°C) temperature scale activated. If you wish to switch to Fahrenheit (°F) and/or back from Fahrenheit to Celsius, proceed as follows: (1) Make sure the thermometer is turned off. (2) Press and hold down the «start» button (IRT 4020) or the «I/O» button (IRT 4520). After about 3 seconds the display will show this sequence: «°C» / «SET» / «°F» / «SET» ... (3) Release the «start» button / «I/O» button when the desired temperature scale is shown. There will be a short beep to confirm the new setting, then the thermometer is turned off automatically. Hope this works - says it's for models IRT 4520 and IRT 4020 (Type 6022, 6023)


What type of graph do you use to display day of the week and temperature?

Box and whisker plot


How do you set a refrigerator a c degrees?

If you're referring to centigrade, see the attached fahrenheit-centigrade Related Link. You can click on the thermometer display to enlarge it.

Related questions

What property is for a thermometer?

The property measured by a thermometer is temperature. Thermometers can detect and display temperature readings in various units such as Celsius or Fahrenheit.


What features does both thermometers have in common?

Both thermometers measure temperature and display the reading digitally. They also typically have buttons to switch between Celsius and Fahrenheit scales. Additionally, they often have memory functions to store past temperature readings.


Do you add a degree with digital thermometer?

No, digital thermometers display temperature readings in degrees Celsius or Fahrenheit without requiring an additional degree to be added. Just read the displayed temperature directly from the device.


Is laboratory thermometer available in Fahrenheit?

Yes, laboratory thermometers are available in Fahrenheit. They can be calibrated to display temperature readings in either Fahrenheit or Celsius, depending on the user's preference or the specific application requirements.


What is the reading of thermometer given as?

The reading on a thermometer is the current temperature. Thermometers measure the temperature of a substance or environment and display it on the scale in degrees Celsius or Fahrenheit. Temperature readings can help determine if conditions are hot, cold, or in between, depending on the scale being used.


What are modern thermometers made of?

Modern thermometers are typically made of materials such as glass, plastic, or metal. The most common type of modern thermometer is the digital thermometer, which includes a temperature sensor and a digital display screen. Other types of modern thermometers may contain mercury or alcohol as the temperature-sensitive material.


At what temperature will Celsius and kelvin thermometers display the same reading?

0 degrees Celsius is equivalent to 273 degrees Kelvin. an increase of 1 degree Celsius is equal to an increase of 1 degree Kelvin. Therefore they will never display the same reading.


How do you change the temperature display from Fahrenheit to Celsius in your 2001 golf mk4?

Press and hold the recirculation button. Then press the temperature up ("+") button to switch between degrees Celsius & Fahrenheit on the Climate Control Temperature and Instrument Panel Outside Temperature displays.


How do you change the temperature display from Celsius to Fahrenheit in your 2000 VW passat?

to change the celsius on display to Fahrenheit, u want to press the econ button on your climatronic, then right after press your auto button right above the econ button, at this time the display should switch to Fahrenheit or Fahrenheit to celcius whichever u prefer....hopes this helps..


How do you Change Fahrenheit to Celsius on surgipack thermometer?

Leave it off and then hold down start button until c flashes up on the display


Write a Cobol pgm to convert centigrade to Fahrenheit?

Certainly! Below is a sample COBOL program to convert temperature from Celsius to Fahrenheit: IDENTIFICATION DIVISION. PROGRAM-ID. TemperatureConverter. DATA DIVISION. WORKING-STORAGE SECTION. 01 CELSIUS-TEMP PIC 9(3). 01 FAHRENHEIT-TEMP PIC 9(3). PROCEDURE DIVISION. DISPLAY 'Enter temperature in Celsius: '. ACCEPT CELSIUS-TEMP. COMPUTE FAHRENHEIT-TEMP = (CELSIUS-TEMP * 9 / 5) + 32. DISPLAY 'Temperature in Fahrenheit is: ' FAHRENHEIT-TEMP. STOP RUN. This program will prompt the user to input a temperature in Celsius, perform the conversion to Fahrenheit, and then display the result.


Write C program for Accept temperature in degree Celsius and display the same in Fahrenheit?

Here is a simple C program that accepts temperature in degrees Celsius from the user and then converts and displays the equivalent temperature in Fahrenheit: #include <stdio.h> int main() { float celsius, fahrenheit; printf("Enter temperature in Celsius: "); scanf("%f", &celsius); fahrenheit = (celsius * 9/5) + 32; printf("Temperature in Fahrenheit: %.2f\n", fahrenheit); return 0; } You can compile and run this program to get the desired output.