Answer:
REM PROGRAM TO CONVERT TEMPERATURE IN CELCIUS TO FARENHEIT
CLS
INPUT “ENTER TEMPERATURE IN CELCIUS”; C
F = C * (9 / 5) + 32
PRINT “TEMPERATURE IN FARENHEIT=”; F
END
Explanation:
Your formula suggests a celcius to fahrenheit conversion...
Answer:
The answer to this question is "The main closet or telecommunications closet".
Explanation:
A multimedia terminal or multimedia terminal adapter (MTA) is also known as a Landline modem that operates just like a wireless router, but in terms of high-speed Internet, an MTA can provide Home Phone service only.
- In the case of a significant power failure, MTAs have only a backup battery that will fuel the MTA for many hours.
- This device is used to connect to a main or telecommunications closet.
The answer is <span>0.693 . </span><span>When a switch is closed, completing an LR series circuit, the time needed for the current to reach one half its maximum value is 0.693
</span>e^(-t/T) = 0.5
<span>-t/T = ln(0.5) = -0.693 </span>
Answer:
The answer is D.
Explanation:
because the other answers doesn't make sense.
Answer:
The value of discountRate would be 0.01
Explanation:
double discountRate = 0.0;
int purchase = 1250;
if (purchase > 1000)
discountRate = .05;
if (purchase > 750)
discountRate = .03;
if (purchase < 2500)
discountRate = .01;
else discountRate = 0;
discountRate is declared as 0.0 then purchase is 1250. But the entire if statement is sequential, that is; all the if statement are executed.
first if-statement assign .05 to discountRate because purchase is greater than 1000.
Next if-statement re-assign .03 to discountRate because purchase is greater than 750.
The last if-statement re-assign .01 to dicountRate because purchase is less than 2500. Since this is the last if statement executed, the value of discountRate is .01