1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
KatRina [158]
3 years ago
14

Compute and output compound interest on $1000.00 for 10 years at interest rates of 5%, 6%, 7%, 8%, 9% and 10% This is an exercis

e in creating nested loops. You must have an inner loop that calculates compound interest via For 1 to 10 amt
Business
1 answer:
jek_recluse [69]3 years ago
5 0

Here is the complete question.

Compute and output compound interest on $1000.00 for 10 years at interest rates of 5%, 6%, 7%, 8%, 9% and 10%

This is an exercise in creating nested loops. You must have an inner loop that calculates compound interest via

For 1 to 10  

amt = rate*amt + amt;

You should have an outer loop that iterates the rate from 0.05 to 1.0.

Interest on $1000.00 over 10 years

rate     total

0.05     $1628.89

0.06     $1790.85

0.07     $1967.15

0.08     $2158.92

0.09    $2367.36

0.1       $2593.74

Press any key to continue

Answer:

Explanation:

The main objective here is to compute  and output compound interest program for the above given data set using the C++.

SO THE PROGRAM GOES THUS:

#include <iostream>

using namespace std;

int main()

{

    double amt;

    double rate = 0.05;

    cout << "\nCompunt interest: " << endl << endl;

    cout << "Rate\tTotal" << endl << endl;

    for (int i = 0; i < 6; i++)

    {

         amt = 1000;

         for (int j = 0; j < 10; j++)

         {

             amt = (rate * amt) + amt;

         }

         cout << rate << "\t$" << amt << endl;

         rate = rate + 0.01;

    }

    system("pause");

}

AND THE SAMPLE OUTPUT IS:

Compound Interest:

Rate             Total

0.05         $1628.89

0.06         $1790.85

0.07         $1967.15

0.08         $2158.92

0.09         $2367.36

0.1            $2593.74

Press any key to continue...

You might be interested in
What type of network allows users to share files without the use of a computer server?
ivanzaharov [21]
I use file share and it works offline so.
4 0
3 years ago
On March 31, 2018, M. Belotti purchased the right to remove gravel from an old rock quarry. The gravel is to be sold as roadbed
garik1379 [7]

Answer:

None of the above options are correct

Depletion amount in 2019 = $52.480

Explanation:

The Cost of Quarry (Depletion Base ) = $164000

Estimated Salable Rock (Units Extracted) = 20000 tons

Depletion Rate = Depletion Base /Units Extracted

Depletion Rate for 2018 = 164000/ 20000 = $8.2/ton

Units Extracted in 2018 = 4000 tons

Depletion amount in 2018 = Depletion Rate for 2018 *Units Extracted in 2018

Depletion amount in 2018 = $(8.2*4000) = $32800

In 2019

Depletion Base in 2019 = The Cost of Quarry - Depletion amount in 2018 = 164000-32800 = $131200

Estimated Salable Rock in 2019 (Units Extracted) = 20000 tons

Depletion Rate for 2019 = 131200/ 20000 = $6.56/ton

Units Extracted in 2019 = 8000 tons

Depletion amount in 2019 = $(6.56*8000) = $52480

4 0
3 years ago
Choose the method of pay that would result in the most earnings for one month on sales of $40,000. A. Straight commission of 7.
sleet_krkn [62]

The method of pay that would result in the most earnings is method 1.

<h3>What method of pay would result in the most earnings?</h3>

In order to determine which method of pay would yield the highest earnings, the total amount that would be earned using each method of pay has to be determined.

Method A = 7.5% x $40,000 = $3000

Method B = $1600 + (2.5% x $40,000) = $2,600

Method C = (5% x $30,000) + (6% x 10,000) = $2,100

Method D = (4% x $25,000) + (8% x $15,000) = $2,200

To learn more about pay, please check: brainly.com/question/11946555

8 0
2 years ago
All of the following are characteristics of Weberian bureaucracy except:
azamat

Answer:

b. management is the same as the ownership of the organization.

Explanation:

Weberian bureaucracy is the term used for the bureaucracy concept introduced by Max Weber, the famous sociologist and economists. He clearly stated that for any kind of administration the basic need is to maintain some standard characteristics:

Which included hierarchy as basics, therefore, it clearly distinguished the management and ownership and both are on different hierarchy.

Therefore, the correct option is:

b. management is the same as the ownership of the organization.

6 0
3 years ago
PLEASE HELP!!!
Luden [163]

building society --- is owned by its members and provides banking servic

trust company --- acts as a fiduciary and handles custodial asset arrangements

asset management firm --- invests people's funds in financial assets

stock brokerage firm --- trades securities and makes money from commissions


5 0
3 years ago
Read 2 more answers
Other questions:
  • Lilly Ann went to the pet store with her mother to buy a gerbil. After choosing her gerbil, she and her mother went to look at c
    12·1 answer
  • On January 1, 2013, Deuce Inc. acquired 15% of Wiz Co.'s outstanding common stock for $62,400 and categorized the investment as
    9·1 answer
  • During the last few decades in the United States, health officials have argued that eating too much beef might be harmful to hum
    7·1 answer
  • How unemployment is impacting on the south africa economy?
    8·1 answer
  • True or false? under medicare part a, a beneficiary can have an unlimited number of benefit periods.
    13·1 answer
  • Which of the following statements about the Federal Application for Student Aid (FAFSA) is TRUE? AYou can only apply online. BTh
    8·2 answers
  • Paul and Roger are partners who share income in the ratio of 3:2. Their capital balances are $90,000 and $130,000, respectively.
    8·1 answer
  • Macmillan Toys Inc. is located in the nation of Ruffino near the nation of East Fenwick. Macmillan Toys is considering expanding
    7·1 answer
  • Does each Subway $5 Footlong cost the franchisee more than $5? Subway, the fast food restaurant franchise, recently announced it
    13·1 answer
  • In its first month of operations, Literacy for the Illiterate opened a new bookstore and bought merchandise in the following ord
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!