Ask Question, Ask an Expert

+61-413 786 465

info@mywordsolution.com

Ask DOT NET Expert

C# GUI (Windows) - Loan Application.

Develop a Loan application GUI Windows.

Laid-back Loans is a company that offers flexible loan terms. All their loans are for 5 years (60 months) or less. The following information should be a part of the Loan class.

Customer name

Loan #

Loan Balance

Term in Months (length of the loan in months)

Year to date Interest Paid

C# GUI (Windows) - Loan Application.

Payment Due

Interest Rate

Each month, the application user can calculate the Payment Due for that month. If there is already an amount in the PaymentDue property, then the loan is overdue and the new Payment Due should be added to the existing amount along with a $35.00 late fee.

Customers who have repaid a loan with Laid-Back Loans before will be charged using simple interest:

Interest over the life of the loan = Principle * rate of interest * time of loan in years
I=P*r*t

Example:

double interestTotal = balance * interestRate * (terms / 12);
double simplePayment = (balance / terms) + (interestTotal/terms);

Customers who are new are charged compounding interest that is compounded monthly (12 times a year):

Accrued amount = Principle * (1 + (rate of interest / number of compoundings per year)) A (number of compoundings per year * number of years) where " means "to the power".

The power function in C# works like this Math.Pow(x,y) gives x^y

Example:

double accrued = balance * Math.Pow((1 + (interestRate / 12)), (12 * terms / 12));
double compoundPayment = (accrued / terms);

The application should allow for a delegate to perform the actual calculation of payments.

The application should allow for an event delegate to trigger when a loan payment is not made.

2156_Loan Application.jpg

DOT NET, Programming

  • Category:- DOT NET
  • Reference No.:- M92013185
  • Price:- $45

Priced at Now at $45, Verified Solution

Have any Question?


Related Questions in DOT NET

Assignment specificationthis assignment is split into two

ASSIGNMENT SPECIFICATION This assignment is split into two documents. 1. Assignment Specification. This document contains the specification for what you will be required to do. 2. Assignment Addendum. This document conta ...

Scenariouser modelling inc would like to organize a series

Scenario User Modelling Inc. would like to organize a series of conferences focusing on research topics in the area of user adaptive systems and personalization. They need to organize annual conferences for researchers a ...

Summarythis assessment requires you to develop a simple

Summary This assessment requires you to develop a simple text editor with a basic offline user login. It is a windows application that will allow new uses to be added, existing users to login, and to create/save/edit tex ...

Casewe sell pdfs from our site and pdfs can be ordered from

Case We sell pdf''s from our site and pdfs can be ordered from the site by selecting a book, putting it in a shopping cart, then signing in with a password or as a guest, and then checking out. For some reason, when a pu ...

  • 4,153,160 Questions Asked
  • 13,132 Experts
  • 2,558,936 Questions Answered

Ask Experts for help!!

Looking for Assignment Help?

Start excelling in your Courses, Get help with Assignment

Write us your full requirement for evaluation and you will receive response within 20 minutes turnaround time.

Ask Now Help with Problems, Get a Best Answer

Why might a bank avoid the use of interest rate swaps even

Why might a bank avoid the use of interest rate swaps, even when the institution is exposed to significant interest rate

Describe the difference between zero coupon bonds and

Describe the difference between zero coupon bonds and coupon bonds. Under what conditions will a coupon bond sell at a p

Compute the present value of an annuity of 880 per year

Compute the present value of an annuity of $ 880 per year for 16 years, given a discount rate of 6 percent per annum. As

Compute the present value of an 1150 payment made in ten

Compute the present value of an $1,150 payment made in ten years when the discount rate is 12 percent. (Do not round int

Compute the present value of an annuity of 699 per year

Compute the present value of an annuity of $ 699 per year for 19 years, given a discount rate of 6 percent per annum. As