I NEED THE PSEUDOCODE
New Balance = Principal * (1 + rate/T)T
Principal is the opening balance in the account. Rate is the interest rate, and T is the number of times the interest is compounded during a year (T is 4 if the interest is compounded quarterly). Write a program that prompts the user for the principal, the interest rate, and the number of times the interest is compounded. The output must be formatted in the following format:
| Interest Rate: | 4.25% |
| Times Compounded: | 12 |
| Principal: | $1000.00 |
| Interest: | $43.34 |
| Amount in Savings: | $1043.34 |
PSEUDOCODE BALANCE()
1. READ THE PRINCIPAL AMOUNT to PRINCIPAL
2. READ THE INTEREST RATE to RATE
3. READ THE TIMES COMPOUNDED to TIME
4. INTEREST =RATE/100
5. INTEREST = INTEREST/TIME
6. INTEREST = 1+INTEREST
7. `INTEREST = POW(INTEREST,TIME)
8. NEW_BALANCE = PRINCIPAL * INTEREST
9. PRINT “INTEREST RATE : “+ RATE
10. PRINT “TIMES COMPOUNDED:” + TIME
11. PRINT “PRINCIPAL: $”+PRINCIPAL
12. PRINT “INTEREST: $” +(NEW_BALANCE – PRINCIPAL)
13. PRINT “AMOUNT IN SAVINGS: $”+ NEW_BALANCE
PROCESS OF EVALUATION
1. PRINCIPAL = 1000
2. RATE = 4.25%
3. TIME = 12
4. INTEREST = 4.25/100 = 0.0425
5. INTEREST = 0.0425/12 = 0.00354166666
6. INTEREST = 1+ INTEREST = 1.003541666
7. INTEREST = POW(1.003541666,12) = 1.0433377163096154
8. NEW_BALANCE = 1000 * 1.0433377163096154 = 1043.33771630961 = 1043.34
I NEED THE PSEUDOCODE New Balance = Principal * (1 + rate/T)T Principal is the opening...
Assuming there are no deposits other than the original investment, the balance in a savings account after one year may be calculated as Amount = Principal *(1 + Rate/T)^T Principal is the original investment in the savings account, Rate is the annual interest rate, and T is the number of times the interest is compounded during a year ( T is 4 if the interest is compounded quarterly). NOTE: the periodic rate r in the expression (1 + r)...
Number 16. Chapter 3 Problem Comes from "Starting out with
>>> C++ From Control Structures through Objects" Ninth
Edition. Checking work
Programming Challenges 147 16. Senior Citizen Property Tax Madison County provides a $5,000 homeowner exemption for its senior citizens. For example, if a senior's house is valued at $158,000, its assessed value would be $94,800, as explained above. However, he would only pay tax on $89,800. At last year's tax rate of $2.64 for cach $100 of assessed value,...
14.Compound Interest hank account pays compound interest, it pays interest not only on the principal amount that was deposited into the account, but also on the interest that has accumulated over time. Suppose you want to deposit some money into a savings account, and let the account earn compound interest for a certain number of years. The formula for calculating the balance of the account afer a specified namber of years is The terms in the formula are A is...
This program asks the user for the initial balance or principal (e.g. $1234.56), the interest rate (as a percentage but without the % sign), number of years, and how frequently compounded (supports the words "daily" for 365, "weekly" for 52, "monthly" for 12, "quarterly" for 4, and "annually" for 1. If then displays the total accrued amount (i.e. the principal plus the interest). The output should look exactly like money. Make sure you create each of the functions appropriately. All...
PROGRAMMING IN C. 1) The first program will compute compounded interest. Suppose you invest $1000.00 at an interest rate of 2% per year. If the interest is computed at the end of each day, it is added to your account (i.e., the interest is compounded daily). Print what the account value will be at the end of each year for 20 years. Use data type double for money. For 365 days per year (ignore leap year), the daily interest rate...
i need this to be in OOP using C++
25. Savings Account Balance Write a program that calculates the balance of a savings account at the end of a three-month feried. It should ask the user for the starting balance and the annual interest rate. A loop abculd then iterate once for every month in the period, performing the following steps: B) A) Ask the user for the total amount deposited into the account during that month and add it...
Suppose an initial principal P is deposited in an account that pays an annual rate of interest I that is Uniform(0.03,0.05) and compounded m times per year. What is the PDF of A(t)? What is E[A(t)]?
Suppose an initial principal P is deposited in an account that pays an annual rate of interest I that is Uniform(0.03,0.05) and compounded m times per year. What is the PDF of A(t)? What is E[A(t)]?
Create the Pseudocode logic for a program that helps a user to calculate one year of simple interest. Create an appropriately named method to: input the amount the user is investing (principal) calculate one year of interest at a rate of 7% (the formula is quite simple, interest is the amount invested times 0.07) output the interest Be aware that any variables required by the method must be declared in the body of the method, not after immediately start like...
Question 1 A bank features a savings account that has an annual percentage rate of r = 4.5% with interest compounded quarterly. Logan deposits $11,000 into the account. The account balance can be modeled by the exponential formula S(t) = P(1+)", nt Th where S is the future value, P is the present value, r is the annual percentage rate written as a decimal, n is the number of times each year that the interest is compounded, and t is...
A bank offers a nominal annual interest rate of 8% for a new savings account. (i) What is the effective rate when compounded quarterly? Draw the cash flow diagram. (ii) If you want to build $500,000 in savings in 2 years, what quarterly annuity must be made? Draw the cash flow diagram.