answersLogoWhite

0

55 centigrade is what Fahrenheit?

User Avatar

Anonymous

9y ago
Updated: 8/21/2019

It is 151 deg F.

User Avatar

Wiki User

8y ago

What else can I help you with?

Related Questions

What is 55 degrees centigrade in fahrenheit?

55 degrees Celsius is equal to 131 degrees Fahrenheit.


What is 55 degrees Fahrenheit equal to in degrees centigrade?

55º Fahrenheit = 12,77º Celsius. 1ºCelsius = 33,8º Fahrenheit.


What is 47 degrees Fahrenheit in centigrade?

47 degrees Fahrenheit is 8.33333 centigrade


What is the difference between Fahrenheit and Centigrade degrees?

Fahrenheit = 5/9 ( Centigrade - 32)


How many Fahrenheit is a centigrade?

A Fahrenheit degree is 5/9 the size of a centigrade degree.


What is the average temperature of the mars?

The average temperature of Mars is about -55° Centigrade or -67° Fahrenheit.


What is 100 degrees Fahrenheit converted into centigrade?

100 degrees Fahrenheit = 37.78 degrees Centigrade


What is 98 Fahrenheit in centigrade?

98 Fahrenheit is exactly 36.66666666666667 degrees centigrade.


What is the Fahrenheit equivalent to zero degrees centigrade?

The Fahrenheit equivalent to zero degrees Centigrade is 32. Centigrade is another name for Celsius, and zero Celsius is the same as zero centigrade.


What is 116.6 degrees Fahrenheit in centigrade?

116.6 degrees Fahrenheit equals 47 degrees Centigrade or Celsius


What is 70 Fahrenheit to degrees centigrade?

70 degrees Fahrenheit = 21.11 degrees Centigrade.


Write a Program in perl to convert given temperature from centigrade to Fahrenheit?

Here's a simple Perl program to convert temperature from Centigrade to Fahrenheit: #!/usr/bin/perl use strict; use warnings; print "Enter temperature in Centigrade: "; my $centigrade = <STDIN>; chomp($centigrade); my $fahrenheit = ($centigrade * 9/5) + 32; print "$centigrade°C is $fahrenheit°F\n"; This program prompts the user to enter a temperature in Centigrade, then calculates and displays the equivalent temperature in Fahrenheit using the conversion formula.