You have been hired as a java programmer

You have been hired as a Java programmer to generate an amortization schedule. This program should be in the form of a Java applet. Inquiries will be Web-based using a browser. Your program should execute within the browser and prompt the user for three different inputs. The first is the loan amount, the second is the length of the loan and the last is the annual interest rate. Your task is to write a Java applet that will provide the user with their payment schedule. This amortization schedule would include their monthly payment amount, interest amount, principal amount and their remaining balance per pay period.

The applet input will be the loan amount, annual percentage rate (APR), and the number of years to pay out the loan. The output will be the loan amount, interest rate per pay period number of pay periods and the monthly payment. This information would be followed by the amortization schedule. Following is an example of the expected output for a $20,000 loan over 5 years at 6.25% interest rate.

Loan Amount $20,000
Interest Rate per pay period 0.0625
Pay Periods 60
Monthly Payment Amount $388.99
 

Payment Monthly Amount Interest Principal Balance
20,000.00
1 388.99 104.17 284.82 19,715.18
2 388.99 102.68 286.30 19,428.88
3 388.99 101.19 287.79 19,141.09
….
59 388.99 4.02 384.96 386.97
60 388.99 2.02 396.97 0.00

The necessary calculations were provided to you:

· p,loan amount or principal

· n,number of payments = payments per year * number of years

· i,interest rate per pay period = APR/payments per year = APR/12

· t,interest paid = interest rate per pay period * previous principal balance

· r,monthly payment amount = principal * interest per period / (1-(1+(interest per period)/100)^(number of payments-1)^2)

· a, principle amount = monthly payment amount – interest paid

· b, principle balance = previous balance – principle amount

Hint: In Java syntax the monthly payment calculation is:

r=((p*(i/100))/(1-(Math.pow((1+(i/100)),(n*(-1))))));

Details:

Please note that your program should accept three inputs:

1. The loan amount,

2. Annual Percentage Rate, and

3. The number of years to pay out the loan

And calculate six types of outputs:

1. The monthly payment amount,

2. Interest per pay period,

3. Number of pay periods,

4. Amortization schedule (including amount of interest per pay period, principal per pay period, and principle balance)

When coding your applet, remember the following:

· Your applet needs to extend the Applet (or JApplet) class. Of course, you need to import the appropriate applet package(s).

· Your applet needs to have declarations for the fields, labels, components, widgets,etc. that you use in the applet.

· There are applet methods that are called automatically by browsers (please see your textbook). Make sure you initialize (implement init()) your applet.

· You need the code that does the calculation of the interest.

· You need to handle the event of pressing the button. There are some examples in the book (ask your instructor for the specific pages).

· You may use this sample code for example.

Please create an HTML page that contains the applet tag. In addition to your mortgage calculator commented Java code, you need to provide the HTML page.

Here is the Hello world Java code example to create an applet:

  

import java.applet.*;
import java.awt.*;
/**
* The HelloWorld class implements anapplet that
* simply displays “HelloWorld!”.
*/
public class HelloWorld extends Applet {
public void paint(Graphics g){
// Display “Hello World!”
g.drawString(“Hello world!”,50, 25);
}
}

  

Then you would compile the class and create an HTML page called Hello.htm:

  

<HTML>
 

<HEAD>
 

<Title>A Simple Program.</Title>
 

</HEAD>
 

<BODY>
 

Here is the output of my program:
<APPLET CODE=”HelloWorld.class”WIDTH=”150″ HEIGHT=”25″>
 

</APPLET>
 

</BODY>
 

</HTML>

  

Deliverable Details:

Upload the commented source code file of your calculator, the class file and the HTML file.

Place your order
(550 words)

Approximate price: $22

Calculate the price of your order

550 words
We'll send you the first draft for approval by September 11, 2018 at 10:52 AM
Total price:
$26
The price is based on these factors:
Academic level
Number of pages
Urgency
Basic features
  • Free title page and bibliography
  • Unlimited revisions
  • Plagiarism-free guarantee
  • Money-back guarantee
  • 24/7 support
On-demand options
  • Writer’s samples
  • Part-by-part delivery
  • Overnight delivery
  • Copies of used sources
  • Expert Proofreading
Paper format
  • 275 words per page
  • 12 pt Arial/Times New Roman
  • Double line spacing
  • Any citation style (APA, MLA, Chicago/Turabian, Harvard)

Our guarantees

Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.

Money-back guarantee

You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.

Read more

Zero-plagiarism guarantee

Each paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.

Read more

Free-revision policy

Thanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.

Read more

Privacy policy

Your email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.

Read more

Fair-cooperation guarantee

By sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.

Read more