169k views
3 votes
Write pseudocode instructions to carry out each of the following computational operations:1. Determine the area of a triangle given values for the base b and the height h.2. Compute the interest earned in 1 year given the starting account balance B and the annual interest rate I and assuming simple interest, that is, no compounding. Also determine the final balance at the end of the year.3. Determine the flying time between two cities given the mileage M between them and the average speed of the airplane.

1 Answer

6 votes

Answer:

Hi there! The question is checking your knowledge on Pseudocode. Pseudocode is a high level solution written in plain English to outline the steps needed for the program to work correctly. An implementation for the different parts of the question is written below.

Step-by-step explanation:

1. Determine the area of a triangle

declare formula for area calculation of triangle as ½ * (base * height)

validate input parameters “base” and “height”

apply formula and return result

2. Compute the interest earned Prompt user for input 2

declare formula for interest calculation as annual interest rate * term * starting account balance

validate input parameters “interest_rate” and “starting_account_balance ”

apply formula and return result as final balance at the end of the year as the interest earned + starting balance.

3. Determine the flying time between two cities given the mileage M between them and the average speed of the airplane.

declare formula for time calculation of triangle as time = distance / speed

validate input parameters for mileage “M” and speed “S”

apply formula and return result

User Steve Rowe
by
6.4k points