Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

ENCMP 100-Computer Programming for Engineers Page 1 of 7 ENCMP 100 - Computer Programming for Engineers Assignment #3 Due: Friday, Mar. 5 2021 at 6:00pm

image text in transcribed

ENCMP 100-Computer Programming for Engineers Page 1 of 7 ENCMP 100 - Computer Programming for Engineers Assignment #3 Due: Friday, Mar. 5 2021 at 6:00pm MST Objective This assignment is designed to provide you with practice using repetition loops structures in your program Loops allow a set of statement(s) to be repeated. There are basically two types of looping in programming, counted loops and conditional loops. A counted loop allows statement(s) to be repeated for a known number of times, while for the conditional loop, the number of times for the statements to be repeated is not known in advance, but depends on a specified condition in the loop statement Marking Scheme You will get a total of 100 points for completing the following: TASK Part A: Correct display of results Part B: Correct display of results Quality of code (25 points for each part) TOTAL POINTS 25 25 50 50 Points for Quality of Code: Complete file header Design (appropriate use and naming of variables Comments in the code Layout (indentation/spacing) Did you follow filename naming convention . . Submission Filename naming convention Assign3A_.m Ex. CCID or email : jmac filename for assignment #1 is Assign3A_jmac.m Submit only your.m file under Assignment 3A and 3B in your eClass/Moodle account. The assignment is due Friday, Mar. 5 2021 at 6:00pm MST Please thoroughly test your code to ensure functionality. ENCMP 100-Computer Programming for Engineers Page 2 of 7 Problem and Program Details: With the help of an RESP (Registered Education Savings Plan), a parent can start putting aside money for a child's post-secondary education. Suppose that a young couple deposits $2,000 to start the savings plan, and each month thereafter they contribute $200. Assume that a fixed interested rate of 6% per year compounded monthly is applied. Each month the balance increases according to the following formula: New balance -Old balance+ (Old balance Monthly interest rate) + Monthly contribution Since the university tuition fee increases over the years, you are asked to further analyze whether the saving is enough to cover the tuition fee for a 4-year study program. You will help them analyze this for 3 different types University programs: Arts, Science, and Engineering, for which the average tuition fees in the current year are as follows: $6000, S6500, and $7000 respectively. The predicted average percentage of tuition increase each year is 5.75%. Each year the new fee due to the annual increase is calculated as follows: New cost-Old cost + (Old cost * Annual increase rate) (2) Part A: In this part, you are asked to calculate the balance of the saving account in each month over 18 years, so the total saving by the end of the 18 year is known. Then calculate the predicted total tuition fee by the 18 year, which should be the total fee over a 4-year university program (1.e. from year 19 to year 22). A for loop can be used for the above calculations. Finally, by comparing the total savings and the predicted total tuition fee, determine whether or not the saving goal is achieved by the end of the 18 year. Steps: 1. Calculate the monthly balance of the savings plan for the next 18 years, based on the formula in equation (1). Save the amount in a vector or an array, 2. Calculate the predicted tuition fee per year for the next 22 years, and then add up the fees over the last 4 college years (from the year 19 to year 22) to get the predicted total education cost for a 4-year program. ENCMP 100-Computer Programming for Engineers Page 3 of 7 3. Compare the savings plan balance and the cost calculated from the step 2. Are the parents saving enough? Print the answer in the command window. To visualize the result, you are also asked to plot the annual savings with respect to the number of years, plot a horizontal line (threshold) indicating the total tuition fee on the same plot. Obviously, if the saving plot goes above this threshold at year 18, then the objective of the saving plan is achieved; otherwise, the objective is not achieved, the customer may choose to increase the monthly saving amount Output: To summarize, in this part, your program needs to generate the following outputs: - An answer to whether or not the parents are saving enough, in the command window; A plot showing both the plot of the annual savings vs. the years, and the threshold line (for the cost). Please label your plot properly. Sample Screenshots should look similar to the ones included. If it is successful... If it is not successful.... Select a program: 1. Ats: 2. Science 3. Engineering: At the end of 18 years you will have saved The cost of a 4-year college tuition fee is $ Congratulation till you have saved enough >> Select a program: 1. Ata 2. Science: 3. Engineering At the end of 18 years you will have saved The cost of a 4-year college tuition fee is The saving is short >> File to view the Tools Desktop Window Help File Edit Toos Desktop Window Help College Savings Tuin College Sams. Tunione Note: The lines will cross The lines do not cross ENCMP 100-Computer Programming for Engineers Page 4 of 7 Assignment 3 - Part A Submission: With For part A assignment, please submit your solution to eClass under Assignment the following naming convention: Assign3A_>] For Science: Command Window Select a progra: 1. Arta; 2. Science 3. Engineering: 2 The 4-year tuition fee $77497.68 You will need to save $190.00 each month to reach the goal >> For Engineering: Command Window Select a program 1. Arta 2. Sesence3. Engineering The 4-year tuition fee is $ 83459.04 You will need to save $ 210.00 each month to reach the goal ENCMP 100-Computer Programming for Engineers Page 6 of 7 Assignment 3 - Part B Submission: For part of this assignment, please submit your solution to cClass under Assignment 3B. With the following naming convention: Assign3B .m Ex. CCID: jmac filename will be Assign3B_jmac.m Code Requirements I) You must use the fprintf function to display your results to the command window for assignment #3 for parts A and B. 2) You must use two types of loops (for and while loop) in your solution for part of this assignment. 3) Do not use the menu function to accomplish this assignment

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Entity Alignment Concepts Recent Advances And Novel Approaches

Authors: Xiang Zhao ,Weixin Zeng ,Jiuyang Tang

1st Edition

9819942527, 978-9819942527

More Books

Students also viewed these Databases questions