Question: java Problem Scenario A local mutual fund company is in need of a Java programmer to assist them with some of their needs Various fund







java
Problem Scenario A local mutual fund company is in need of a Java programmer to assist them with some of their needs Various fund managers in the office take care of multiple stocks in the manager's fund The company needs to be able to track information about their fund managers and their stock trades For each FundManager, the office needs to know: Broker's license number (Unique String - three letters followed by five digits) Broker's first name (String) Broker's last name (String) Broker's department number (String of digits and a dash, formatted as "###-###") Broker's commission rate (double representing a percentage) * * . . The mutual fund company has had issues with incorrect license numbers and department numbers, so they are requesting a way to be able to determine if the they are correct For each StockTrade, the stock broker's office wants to track: * Stock symbol (Unique 3 or 4-char string, all uppercased) Stock price per share (double) Stock number of shares (int) Broker's license number (to match license number in FundManager) * NOTE: Only whole shares can be traded for this program * . Whether trade is taxable (boolean) The mutual fund company has also had issues with incorrect stock symbols, prices, and number of shares, so they are requesting a way to be able to determine if the they are correct Program Requirements The assignment this week is to create and test some of the classes for the problem scenario above. These classes will be used to implement data structures in later assignments The program must follow the CS310 Coding Standards from Content section 1.9 To set up a project directory for your program: Create a new project in NetBeans, and name it CS310 + last name (e.g. CS310Smith) Use the default Main Class name provided by NetBeans (e.g. cs310smith.CS310Smith) This will cause NetBeans to create a package for your source code files o NetBeans will create the default folders for the project o NetBeans will create the main method within the main class (e.g. CS310Smith.java) o o Problem Scenario A local mutual fund company is in need of a Java programmer to assist them with some of their needs Various fund managers in the office take care of multiple stocks in the manager's fund The company needs to be able to track information about their fund managers and their stock trades For each FundManager, the office needs to know: Broker's license number (Unique String - three letters followed by five digits) Broker's first name (String) Broker's last name (String) Broker's department number (String of digits and a dash, formatted as "###-###") Broker's commission rate (double representing a percentage) * * . . The mutual fund company has had issues with incorrect license numbers and department numbers, so they are requesting a way to be able to determine if the they are correct For each StockTrade, the stock broker's office wants to track: * Stock symbol (Unique 3 or 4-char string, all uppercased) Stock price per share (double) Stock number of shares (int) Broker's license number (to match license number in FundManager) * NOTE: Only whole shares can be traded for this program * . Whether trade is taxable (boolean) The mutual fund company has also had issues with incorrect stock symbols, prices, and number of shares, so they are requesting a way to be able to determine if the they are correct Program Requirements The assignment this week is to create and test some of the classes for the problem scenario above. These classes will be used to implement data structures in later assignments The program must follow the CS310 Coding Standards from Content section 1.9 To set up a project directory for your program: Create a new project in NetBeans, and name it CS310 + last name (e.g. CS310Smith) Use the default Main Class name provided by NetBeans (e.g. cs310smith.CS310Smith) This will cause NetBeans to create a package for your source code files o NetBeans will create the default folders for the project o NetBeans will create the main method within the main class (e.g. CS310Smith.java) o o
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
