[Solved] SOLVED:Programming Project #3 Solution

30 $

File Name: SOLVED:Programming_Project_#3_Solution.zip
File Size: 357.96 KB

SKU: [Solved] SOLVED:Programming Project #3 Solution Category: Tag:

Or Upload Your Assignment Here:


Objectives: To design and implement multiple classes To practice using the array-based implementation of an indexed list To practice reading data from a fileProblem:A friend has hired you to keep track of their stock portfolio. You will need to keep track of the stocks purchased and their purchase price as well as the worth of the portfolio over time as stocks are bought and sold. Stock purchases and sales will be input from a text file and processed in a first-in, first-out manner.Specifications:Your project (project3) should contain all classes, including exception classes (i.e. you will not need to link to other projects and include import statements.) The following is excerpted from our textbook, Data Structures and Algorithms in Java, and can be found on page 235. You should note that the description in the textbook refers to an input sequence that is different than the one you are required to use. I’ve included below the portion of the specification that applies to this project.When a share of common stock of some company is sold, the capital gain (or, sometimes, loss) is the difference between the shares’s selling price and the price originally paid to buy it. This rule is easy to understand for a single share, but if we sell multiple shares of stock bought over a long period of time, then we must identify the shares actually being sold. A standard accounting principle for identifying which shares of a stock were sold in such a case is to use a FIFO protocol—the shares sold are the ones that have been held the longest (indeed, this is the default method built into several personal finance software packages). For example, suppose we buy 100 shares at $20 each on day 1, 20 shares at $24 on day 2, 200 shares at $36 on day 3, and then sell 150 shares on day 4 at $30 each. Then applying the FIFO protocol means that of the 150 shares sold, 100 were bought on day 1, 20 were bought on day 2, and 30 were bought on day 3. The capital gain in this case would therefore be 100·10+20·6+30·(−6), or $940.Input Files:There are two input files (available on Blackboard). The structure for each is outlined below.symboldata.txt – each line of the file will have the following format:CSCO Cisco Systems, Inc.BAC Bank of America Corporation…Note that the ticker symbol, which appears first, does not contain spaces, but the company name does.Page 2 of 4stockdata.txt – each line of the file will have the following format:b 100 42.47 MSFTb 50 38.56 GM…b 100 21.06 CSCOs 150 40.15 MSFTb 150 3.12 SIRIThe first character indicates whether the stock is being bought or sold.The integer that follows indicates the number of shares being bought/sold.The double indicates the price at which the stock was bought/sold.The string is the ticker symbol for the stock.UML Class Diagrams:You will be utilizing the ArrayIndexList and IndexOutOfBoundsException classes developed in class/lab. You may find it helpful to include an add method which will store the item passed to it in the next available position. The other classes that need to be developed are outlined below.SymbolPair– tickerSym : String– companyName : String+ SymbolPair(String, String)+ getTickerSymbol() : String+ getCompanyName() : StringSymbolTable– symbolPairs : ArrayIndexList<SymbolPair+ SymbolTable(File)+ findCompany(String) : StringStock– tickerSym : String– sharesOwned : int– purchasePrice : double+ Stock(int, double, String)+ getTickerSymbol() : String+ getSharesOwned() : int+ getPurchasePrice() : double+ setSharesOwned(int) : void+ toString() : StringPortfolio– stocks : ArrayIndexList<Stock– symbols : SymbolTable– worth : double+ Portfolio(SymbolTable)+ processTransaction(char, int, double, String) : voidPage 3 of 4+ toString() : StringRuntimeException (predefined)+ RuntimeException()+ RuntimeException(String)InvalidSaleException+ InvalidSaleException(String)The Application Class:The application class is responsible for creating a SymbolTable object, creating a Portfolio object, and then processing the transactions in stockdata.txt.Output:For each transaction processed you should display the portfolio before the transaction, followed by information describing the transaction and finally the portfolio after the transaction. All output should be displayed in the console and should be properly labeled. You should display the full company name, not the ticker symbol.Invalid Input:If there is an attempt to sell more stock than is currently contained in the portfolio, an error message should be displayed instead of the transaction description. Processing should continue with the next transaction.

Shopping Cart
[Solved] SOLVED:Programming Project #3 Solution
30 $