Write the pseudocode for problem below.

Prompt the user to input a temperature in the Fahrenheit scale. Then display its equivalent in the Celsius scale. Repeat until a temperature of 9999 is entered.


```
OUTPUT "Enter a temperature in the Fahrenheit scale."
INPUT f degree
DO UNTIL f degree = 9999
LET c_degree = (5/9) * (f degree — 32)
OUTPUT "The corresponding temperature in the Celsius scale is ", c_degree OUTPUT "Enter a temperature in the Fahrenheit scale."
INPUT f degree
LOOP
```

Computer Science & Information Technology

You might also like to view...

The development of training plans is ____, where feedback is provided to the day-to-day training operation.

A. linear B. iterative C. sequential D. individual

Computer Science & Information Technology

Implanting identity chips in people brings up questions of privacy

Indicate whether the statement is true or false

Computer Science & Information Technology

________ is the actual speed of data transfer that is achieved between two nodes on a network and is always less than or equal to the data transfer rate.

A. Benchmark B. Broadband C. LAN speed D. Throughput

Computer Science & Information Technology

Larger e-businesses with hundreds of complex transactions might choose to contract for shared hosting services._______________________

Answer the following statement true (T) or false (F)

Computer Science & Information Technology