[Solved] Annual Expense Estimator (Arrays)

30 $

File Name: Annual_Expense_Estimator_(Arrays).zip
File Size: 310.86 KB

SKU: [Solved] Annual Expense Estimator (Arrays) Category: Tag:

Or Upload Your Assignment Here:


5/5 – (1 vote)

In this assignment, you will implement a simple “Annual Expense Estimator” to tabulate your expense items. Expenses are an important component of a personal income statement. The most accurate way of coming up with your income statement is to keep a record of all incomes and expenses. If year–round record keeping is not possible, professional financial advisers oftenask you to keep track of all income and expense records for 2-3 months, then the records can be used to estimate the annual value.When no record is available at all, you can still estimate your annual expenses.

One way to estimate is to list expense items according to their occurrence frequencies and the estimated amount each time the expense occurs. Then you can calculate the annual total of each item and the grand total of all expense items. If you store expense items (amount and frequency) ina 2-D array, you will use array notation to calculate the annual total of each expense item, e.g., expenses[i][0]*expenses[i][1].Your program should produce formatted output similar to the following table. The “. . . ”symbols here mean that additional items are omitted in the illustration. Your output should not have these “. . . ”. That is, the expense items in the table are for illustration purposes; you should use the opportunity to produce a list of items as complete as possible to best reflect your expenses. Identify and list at least six items. Item Frequency Times Amount Annual TotalCoffee Daily 365 5.50 2,007.50Grocery Weekly 52 120.00 5,240.00Phone Monthly 12 75.00 900.00Tuition Semi-annually 2 6,500.00 13,000.00… … … …Total 31,408.501Implementation Requirement1. There must be no less than 6 expense items that occur at various frequencies.2. Use a 1-D array to store the item names.3. Use a 2-D array to store expense item’s amount and number of times it occurs in a year.The array should have just 2 columns. Use double data type for the values in the array.4. This program must be implemented with a class that includes three methods:• void main(String[] arg). It is the entry point of the program with expense itemname, amount, and number of times occurred in a year hard coded and stored inarray variables with appropriate types. It calls the outputInfo method to produce the desired output.• String getLabel(int times). The method returns a meaningful frequency label based on the value of the times parameter. For example, if times is equal to 365, return “Daily”; if it is equal to 12, return “Monthly”; and so on and so forth. You can use chained if … else• void outputInfo(String item, int times, double amount). It produces the desiredoutput using printf method. It needs to call the getLabel method with times asparameter to obtain the frequency label5. The main method of the program should follow the process described below:Declare and initialize the 1-D array for item namesDeclare and initialize the 2-D array for item amounts and frequenciesDeclare a variable for grand total and initialize it to 0Begin for-loopAdd annual total to grand totalOutput expense item ’s name , amount , frequency as a string , and annualtotalEnd for -loopOutput grand totalIn the loop, you need to call outputInfo method. For example, if the 1-D array is names and2-D array is expenses and the frequency is in the second column, you can invoke the method likethe following:outputInfo (names[i],(int)expenses[i][1] , expenses[i][0])SubmissionCreate your write-up using a word processor (e.g., Word). Make sure you include the followingparts:• Title page. The title page should include the assignment information (e.g., Homework 1), your name, and a sentence summarizing what the program is about.• Table of contents. List of all sections included in the submission. You do not need to have page number for each section.• All sections. The required sections of this exercise include:– Overview. A brief description of the program: its function, input (the input is tuition information hard-coded in the program), and output.– Design and Implementation. A description of the design choices and structure of the program: class, methods, variables, and other notable functions used (e.g., printf).Include a flowchart of the for–loop part of the main method. Also include aUML class diagram of the class using the notation adopted in this course.– Testing. Include screenshots to show the function (e.g., output) of the program.– Discussion. Include the following discussions as subsections:∗ Difficulties encountered and how you solved them.∗ Sources of help you used.∗ What did you learn in terms of programming?∗ What did you learn in terms of personal finance?∗ Any other lessons learned from the assignment.– Source code. Include source code as text, not images. Include comments in the source code to document your understanding of the code.Note: It is important for you to include all required parts. A working program only counts 60–70% of the points; documentation accounts for the rest of the points.

Reviews

There are no reviews yet.

Only logged in customers who have purchased this product may leave a review.

Shopping Cart
[Solved] Annual Expense Estimator (Arrays)
30 $