Task 4 The annual tuition fees to study a computer science degree at ABC College is $10000 and it is expected to increase by 5% each year. The client wants pseudocode for a new program that will calculate the tuition fees of the computer science degree for the next 3 years. Write pseudocode that:- i) takes two inputs: the current annual tuition fees(10000), and the annual increase rate(5%). ii) calculate the tuition fees by multiplying the annual tuition fees for each year by the 5% increase. iii) outputs three values: the tuition fees for the years 2023, 2024 & 2025. Sample output: The tuition fees for the year 2023 are: $10500 The tuition fees for the year 2024 are: $11025 The tuition fees for the year 2025 are: $11576.25
Max Function
Statistical function is of many categories. One of them is a MAX function. The MAX function returns the largest value from the list of arguments passed to it. MAX function always ignores the empty cells when performing the calculation.
Power Function
A power function is a type of single-term function. Its definition states that it is a variable containing a base value raised to a constant value acting as an exponent. This variable may also have a coefficient. For instance, the area of a circle can be given as:
Trending now
This is a popular solution!
Step by step
Solved in 3 steps with 2 images
Don't I have to mention the rate that is 5% and the years?
Can you help me with the pseudocode and not the actual code? I haven't yet reached there. Just the pseudocode, so I can understand better?