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
When inflationary pressure occurs, what is happening to the dollar?
GaryK [48]

Answer:

A

Explanation:

7 0
3 years ago
The follow passage describes how a catalytic converter in a car works. The catalytic converter mostly likely was developed in re
Mashcka [7]

Answer:

Its A

Explanation:

Its A

5 0
3 years ago
Imagine that a designer writes content for their online portfolio. To come across as knowledgeable about UX design, they include
denis23 [38]

To improve their written content, the designer can do the following:

  1. Understand the audience he targets.
  2. Incorporate storytelling to capture the interests of his audience.
  3. Make the presentation simple.
  4. Incorporation of text in the User Interface.
  5. Make a good copy to sell your skill.

<h3>Who is a designer?</h3>

A designer is an individual that uses computer-aided software and devices to plan and draw the soft/hard copies of a material.

A User Interface designer designs the screens that users go through while surfing a website.

To improve their written content and improve their portfolio, they can use the numbered steps above.

Learn more about UI Designers here:

brainly.com/question/898119

5 0
2 years ago
Customer Information Programs (CIPs) use several examples to define a person opening a new account. In which scenario should the
xz_007 [3.2K]

Answer:

Option (D) is the right answer.

Explanation:

According to the scenario, the most appropriate answer is option ( D) because Stanley smith is a customer of the bank as he has a checking account in the bank.

While the other options are wrong because of the following reasons:

  • Option (A) is incorrect because the company lucky licks Inc. is the customer of the bank, not any person.
  • Option (B) is incorrect because Cara is not the customer of the bank as she only uses the bank's ATM.
  • Option (C) is incorrect because Herman is not the customer of the bank as he only cashes his checks in the bank.
8 0
3 years ago
Marian Company reported the following items for the month of​ July: Sales revenue $ 473 comma 300 Cost of goods sold $ 300 comma
NARA [144]

Answer:

4.33.

Explanation:

Inventory turnover is a ratio that tells us the number of times a company sells and replaces its inventory. It is calculated by taking Cost of Goods Sold for a period and dividing it by Average Inventory [(Opening + Ending) / 2].

⇒ 300,000 / [(64,400 + 74,200) / 2] = 300,000 / 69,300 = 4.33.

It means that Marian Company sold its inventory 4.33 times during the Year.

3 0
3 years ago
Other questions:
  • Demand for a good is said to be inelastic if the quantity demanded increases substantially when the price falls by a large amoun
    5·1 answer
  • A country's exports minus its imports during a period are:
    11·1 answer
  • Name some goods and services that are provided by the government.
    9·1 answer
  • When a company's strategy is __________ the firm makes arrangements for a foreign manufacturer to produce the product. The domes
    14·1 answer
  • The Master Manufacturing Company has just announced a tender offer for its own common stock. Master is offering to buy up to 100
    12·1 answer
  • Alfred, Mario, and Lydia have worked together on the same team for three years. The company has just hired a new personnel direc
    13·2 answers
  • What is the form of payment, form of acquisition, acquisition vehicle, and post-closing organization?
    15·1 answer
  • You just won the Powerball and are offered two payment options: 1) Receiving $80 million per year for 25 years beginning at next
    13·1 answer
  • Cuando cambia el valor nominal de una accion
    11·1 answer
  • The deadweight loss associated with a monopoly occurs because the monopolist:_______
    5·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!