Home /
Expert Answers /
Computer Science /
pseudo-code-a-write-the-pseudo-code-or-create-a-flowchart-for-the-program-described-below-using-wor-pa313
(Solved): Pseudo-code a. Write the pseudo-code or create a flowchart for the program described below using Wor ...
Pseudo-code
a. Write the pseudo-code or create a flowchart for the program described below using Word and the correct flowehart symbols. Save it as psendo.docx b. Using your pseudo-code or flow chart, write a program that converts (entered by the user) minutes to seconds and minutes to hours. The user will specify which conversion should be carried out. Save it as part4.html. The formula for converting to hours from minutes is: hours \( = \) minutes \( / 60 \); The formula for converting to seconds from minutes is: scconds \( = \) minutes \( * 60 ; \) Conversions that you should test: - Enter 43 Minutes, choose to convert to Hours. Result: \( 0.7166666667 \) Hours. - Enter 32 Minutes, chooso to convert to Seconds. Result 1920 Seconds - Enter 21 Minutes, choose to convert to Hours. Result: \( 0.35 \) Hours.