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
Modern Railways Co. operates a cargo railroad service between New York and Boston. A train owned by Modern Railways derails due
horsena [70]

Answer:

d. Special damages

Explanation:

Special damages -

It refers to as a some particular type of damages that occurs because of the violation of some contract or rule , is referred to as a special damage .

In case the rule is not followed or the contracted is violated , then special damages are applied .

All the covers for the special dam,age is pre- decided and is mentioned in the contract .

Hence , from the given scenario of the question ,

The correct answer is d. special damages .

4 0
2 years ago
Hassock Corp. produces woven wall hangings. It takes 4 hours of direct labor to produce a single wall hanging. Hassock standard
navik [9.2K]

Answer:

Efficiency variance  =$9,860   unfavorable

Explanation:

Labour efficiency variance is the difference between the actual time taken to achieve a given production output less the standard hours allowed for same multiplied by the standard labour rate

                                                                                                  Hours

11,900 units should have take (11,900× 4hrs)                          47,600                      

but did take                                                                              <u>48,180</u>

Difference                                                                                   580  unfavorable

Standard hours                                                                     <u> ×   $17 </u>

Efficiency variance                                                           <u>$9,860   unfavorable</u>

5 0
2 years ago
What is one action an employer can take to lower wage levels?
Nastasia [14]
The right answer for the question that is being asked and shown above is that: "c. Replace some workers with machines." one action an employer can take to lower wage levels is that <span>c. Replace some workers with machines.</span>
7 0
2 years ago
Ashley is an eighteen-year-old who works as a clerk in a store that sells bird seed. she earns minimum wage. her boss, trina, of
kirill [66]
Ashley is not happy.   (is this the full question?... it looks like it is missing the last sentence
7 0
2 years ago
When a firm grants licenses internationally, it is giving foreign companies access to its:?
scoundrel [369]
<span>When a firm grants licenses internationally, it is giving foreign companies access to its trademarks, </span>technology and patents. Having your licenses and business become international is a huge gain for most businesses. When items go international, they have a larger market they can sell their products too, but there are also some risk to it as well. Allowing the foreign countries and companies to see how your products work inside and out benefit them while bringing in more profit to the international licensee. 
4 0
3 years ago
Other questions:
  • Victor is calling on Meridian Cabinet Works. His goal is to close the deal for a customized profile sander valued at about $3,50
    13·1 answer
  • If congress increases the minimum wage to $7.25 per hour, what happens to the demand for consumer goods as a result?
    15·2 answers
  • Maxine wishes to purchase a pair of running shoes made by her favorite brand. Her budget is limited, and she notices shoes made
    13·1 answer
  • Market in which goods and services are bought and sold.
    12·1 answer
  • Michael is a successful business owner who can develop his ideas into productive enterprises. Although he was an average student
    6·1 answer
  • Suver Corporation has a standard costing system. The following data are available for June
    9·1 answer
  • Changes in tariffs and quotas are: Group of answer choices infrastructure changes. corporate strategies designed to maximize pro
    7·1 answer
  • Trent Inc. needs an additional worker on a multiyear project. It could hire an employee for a $88,000 annual salary. Alternative
    15·1 answer
  • At the beginning of 2020, Concord Company acquired a mine for $3,251,600. Of this amount, $124,000 was ascribed to the land valu
    6·1 answer
  • How much money did daniel radcliffe make from harry potter
    15·2 answers
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!