Answered step by step
Verified Expert Solution
Question
1 Approved Answer
* Please use Netbeans/ Java thenkyoul. Write a class encapsulating the concept of an investment, assuming the investment has the following attributes: the amount of
* Please use Netbeans/ Java thenkyoul. Write a class encapsulating the concept of an investment, assuming the investment has the following attributes: the amount of the investment (p) and the interest rate (r) at which the investment will be compounded. 1. Write an Investment class including at least two constructors, the accessors (getters) and mutators (setters), and the tostring method. 2. Assuming that the interest rate is compounded quarterly, write a method in the Investment class returning the future value of the investment depending on how many quarters we hold it before selling it, which can be calculated using the formula: p=p(1+r)n, where n= number of periods (period = quarter). 3. Also write a Main class to test all the methods in your class
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started