POS 409 Instant Education/uophelp

POS 409 Entire Course

For more course tutorials visit

www.uophelp.com

POS 409 Week 2 Assignment and Discussion Questions

POS 409 Week 3 Assignment and Discussion Questions

POS 409 Week 4 Assignment and Discussion Questions

POS 409 Week 5 Assignment and Discussion Questions

******************************************************************************

POS 409 Week 2 Assignment and Discussion Questions

For more course tutorials visit

www.uophelp.com

Basic Checkbook Organizer
 This assignment is based upon Assignment #2 — Basic Checkbook Organizer. Details for this assignment can be found in the Individual Assignments & Grading Requirements Post in the Course Materials Forum
 Change request 20
 Write the program in VB.Net (not Web based) with a graphical user interface. Have the user input the amount of the mortgage, the term of the mortgage and the interest rate. Display the mortgage payment amount based on the user’s inputs. Allow the user to loop back and enter new data or quit. Insert comments to document the program.
 Additional Instructions:
 Build a Windows based application that simulates a basic checkbook organizer that meets the following requirements:
 1. Windows based application
 2. Allow user to enter starting balance
 3. Allow user to enter a series of Transactions
 1. Transaction is defined as a Debit (withdrawal) or a Credit (deposit)
 2. i. Example 1 — Amount: $ 1,234.50 Type: Debit
 3. ii. Example 2 — Amount: $ 50.00 Type:Credit
 1. Validation of input must be provided (do not allow for non-numeric input or negative input)
 2. Create a separate class that can be used to define a transaction. This class will be expanded in following assignments, so be flexible in its design. This class should contain properties that define the Type (Debit or Credit) and Amount. You may also include methods in the class for the various calculations.
 4. Running account balance as transactions are applied must be maintained
 1. Example — Current Balance: $ 1,200.76
 5. Running total of Credits and Debits must be maintained
 1. Example — Total Debits: $ 2,301.34 Total Credits: $ 1,509.97
 6. Navigation must be provided
 1. Clear All Totals & Start Over
 2. Exit Application
 3. Add New Transaction
 7. Provide detailed comments in the code explaining the process and methodology that you use.

******************************************************************************

POS 409 Week 3 Assignment and Discussion Questions

For more course tutorials visit

www.uophelp.com

Extended Checkbook Organizer

This assignment is based upon Assignment #3 — Extended Checkbook Organizer. Details for this assignment can be found in the Individual Assignments & Grading Requirements Post in the Course Materials Forum

Change request 21

Write the program in VB.Net (not Web based) with a graphical user interface. Have the user input the amount of the mortgage and then select from a menu of mortgage loans:

7 years at 5.35%

15 years at 5.5%

30 years at 5.75%

Use an array for the different loans. Display the mortgage payment amount. Then, list the loan balance and interest paid for each payment over the term of the loan. Allow the user to loop back and enter new data or quit. Insert comments to document the program.

Additional Instructions:

Assignment #3 (WEEK 3) — Extended Checkbook Organizer

A transaction is NOW defined as the following:

Date of Transaction

Transaction Number (Deposit) or Check Number/ATM Transaction Number (Check, Debit, ATM Withdrawal, etc.)

Transaction Amount

Transaction Type (Debit or Credit)

Transaction Description

Expand the Checkbook Organizer from Assignment #1 to include the expanded transaction definition provided above. Create a visual Transaction Register that allows the user to view the transactions. The user should be able to double click a specific transaction and view the following details in another window that can be closed with a button click:

Complete transaction information (see definition above)

Current Account Balance, Credit Total and Debit Total as they were at the time of that transaction.

Include the same total tracking and navigation from Assignment #1.

Assignment Requirements:

1. Windows application that includes all requirements from Assignment #1 PLUS the expanded Transaction definition

2. Provide a visual Transaction Register that provides an ongoing view of the transactions currently entered along with the Account Balance, Credit and Debit Totals.

3. The user must be able to double click a single transaction in the register and view the Transaction details along with the Account, Credit and Debit balances as they were at the time of the transaction in a separate window.

4. Navigation will be the same as Assignment #1, PLUS the user should be able to exit the Transaction Detail window by clicking a Close button. The User SHOULD NOT be allowed to access the parent form (Transaction Register and Data Entry Form) while the Transaction Detail window is being viewed.

5. Provide detailed comments in the code explaining the process and methodology that you use.

******************************************************************************

POS 409 Week 4 Assignment and Discussion Questions

For more course tutorials visit

www.uophelp.com

Extended Checkbook Organizer — Batch Mode

This assignment is based upon Assignment #4 — Extended Checkbook Organizer — Batch Mode. Details for this assignment can be found in the Individual Assignments & Grading Requirements Post in the Course Materials Forum

Change request 22

Write the program in VB.Net (not Web based) with a graphical user interface. Allow the user to select which way they want to calculate the mortgage: By input of the amount of the mortgage, the term of the mortgage and the interest rate of the mortgage OR By input of the amount of the mortgage and then select from a menu of mortgage loans:

7 years at 5.35%

15 years at 5.5%

30 years at 5.75%

In either case, display the mortgage payment amount. Then, list the loan balance and interest paid for each payment over the term of the loan. Allow the user to loop back and enter a new amount and make a new selection, or quit. Load the interest rates for the 7 year, 15 year, and 30 year loans from a file. Insert comments to document the program.

Additional Instructions:

Assignment #4 (WEEK 4) — Extended Checkbook Organizer — Batch Mode

Expand the Checkbook Organizer from Assignment #3 to include a batch mode which allows the user to enter transactions by loading from a USER SELECTED FILE.

The format of this file shall be EXACTLY as follows:

Date|Trans/Check Number|Amount|Type|Description

Format Rules:

1. The delimiters MUST be the pipe ( | ) symbol.

2. The Type Code for Transactions MUST be DR for Debit or CR for Credit.

3. Date Format: MM/DD/YY or MM/DD/YYYY

File Example:

01/23/2010|2385|125.76|DR|Purchased groceries at Food Mart

02/05/2010|1050|1578.98|CR|Automated Payroll Deposit

Your application should allow the user to select a transaction file (Hint: An Open File Dialog will be needed). The application should parse the file and load the data into the Transaction Register maintaining the ongoing account, credit and debit balances as before.

Include the same total tracking and navigation from Assignment #3.

Assignment Requirements:

Windows application that includes all requirements from Assignment #3

In addition to the manual transaction entry system from Assignment #3, include a batch loader process that allows the user to select a transaction file (see format above). This transaction file will be parsed and processed into the Transaction Register maintaining all ongoing balances.

The Transaction Detail viewing requirement will be carried over from Assignment #3.

Navigation will be the same as Assignment #3

Provide detailed comments in the code explaining the process and methodology that you use.

******************************************************************************

POS 409 Week 5 Assignment and Discussion Questions

For more course tutorials visit

www.uophelp.com

Extended Checkbook Organizer — Web Based

This assignment is based upon Assignment #5 — Extended Checkbook Organizer — Web Based. Details for this assignment can be found in the Individual Assignments & Grading Requirements Post in the Course Materials Forum

Change request 23

Write the program in VB.Net with a graphical user interface. Make the program Web based. Allow the user to select which way they want to calculate the mortgage: By input of the amount of the mortgage, the term of the mortgage and the interest rate of the mortgage OR By input of the amount of the mortgage and then select from a menu of mortgage loans:

7 years at 5.35%

15 years at 5.5%

30 years at 5.75%

In either case, display the mortgage payment amount. Then, list the loan balance and interest paid for each payment over the term of the loan. Add graphics in the form of a chart. Allow the user to loop back and enter a new amount and make a new selection, or quit. Load the interest rates for the 7 year, 15 year, and 30 year loans from a file. Insert comments to document the program.

Additional Instructions:

Assignment #5 (WEEK 5) — Extended Checkbook Organizer — Web Based

Convert the Checkbook Organizer from Week 3 (Assignment #3 — Extended Checkbook Organizer) into a WEB BASED application.

NOTE: The Transaction Detail viewer functionality must be changed to show the details of a selected (single click instead of double click) transaction in a section below the Transaction Register. Also, the nature of web based design will make total tracking problematic. Some form of session management will be needed. HINT: I suggest using either Session Variables or hidden fields.

Include the same total tracking from Assignment #3 (Week 3).

Navigation will include the following (Clear, Close Transaction Detail). EXIT is NOT needed in the web based application.

Assignment Requirements:

WEB BASED application that includes all requirements from Assignment #2 using ASP.NET (files should be ASPX, ASCX and code behind VB files ONLY, no XAML, XSLT, PHP, etc.)

The Transaction Detail viewing requirement will be carried over from Assignment #2 with the modifications discussed above.

In order to maintain balance tracking, some type of session management will be needed. Include this management in your assignment (see HINT above).

The Navigation will be modified as discussed above.

Provide detailed comments in the code explaining the process and methodology that you use.

*******************************************************************