answersLogoWhite

0

What else can I help you with?

Continue Learning about Engineering

What is the output voltage of a 400 watt mtal halide?

According to Sylvania, their 400w lamps reach a maximum surface temperature of around 750F. This seems to be universal of all HID lamp types.


What is the maximum hot water temperature recommended by water heater manufacturers and most State safety agencies?

120 degrees


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;}


Maximum working pressure sched 40 steel pipe?

A pressure rating refers to the qualified operating pressure which is recommended for a component or a system by the manufacturer. The maximum working pressure of a 12" steel having a schedule of 40 at 100 degrees Fahrenheit is 855 psig.


What is the voltage at the 90 degree point of a sine wave with a maximum voltage of 10 volts?

10 Volts. ANSWER: ASSUMING a start when the voltage is at 0 and 0 degrees at 90 degrees is at maximum at 180 degrees is again at 0 v at 270 degrees is at the maximum negative potential and at 360 degrees is again at 0 v. the voltage is irrelevant in any case but it will follow these rules

Related Questions

What is the forecasted maximum temperature for tomorrow?

The forecasted maximum temperature for tomorrow is 85 degrees Fahrenheit.


How hot does a hand warmer get and what is the maximum temperature it can reach?

A hand warmer typically reaches temperatures between 120 to 180 degrees Fahrenheit, with a maximum temperature of around 200 degrees Fahrenheit.


What is the maximum and minimum temperature for Saturn?

The maximum temperature on Saturn is around 134 degrees Celsius (273 degrees Fahrenheit) at the top of its clouds, while the minimum temperature is approximately -185 degrees Celsius (-300 degrees Fahrenheit) in its upper atmosphere.


What is the maximum temperature that wood flames can reach?

The maximum temperature that wood flames can reach is around 1,100 degrees Celsius (2,012 degrees Fahrenheit).


What is the maximum temperature of an oxygen tank?

Not to exceed 125 degrees fahrenheit!!


What is the maximum and minimum temperature on mars?

The maximum temperature on Mars can reach around 70 degrees Fahrenheit (20 degrees Celsius) near the equator during the day, while the minimum temperature can plummet to about -195 degrees Fahrenheit (-125 degrees Celsius) at the poles during the night.


What is the maximum temperature recorded in the desert?

The maximum temperature recorded in the desert is 134 degrees Fahrenheit (56.7 degrees Celsius) in Death Valley, California, USA.


What are the usual temperatures in January in Portugal?

The average temperature for Portugal is 52 degrees Fahrenheit [11 degrees Celsius] in January. The average maximum temperature for January is 57 degrees Fahrenheit [14 degrees Celsius]. The average minimum temperature for January is 46 degrees Fahrenheit [7 degrees Celsius].


What is the maximum oven temperature that Pyrex can safely withstand?

Pyrex can safely withstand a maximum oven temperature of 450 degrees Fahrenheit.


What is the maximum temperature setting on the Dyson hair dryer?

The maximum temperature setting on the Dyson hair dryer is 212 degrees Fahrenheit.


What is the maximum temperature that boiling water can reach?

The maximum temperature that boiling water can reach is 212 degrees Fahrenheit (100 degrees Celsius) at standard atmospheric pressure.


What is the maximum temperature that the hottest burning wood can reach?

The maximum temperature that the hottest burning wood can reach is around 1,100 degrees Celsius (2,012 degrees Fahrenheit).