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
Alex_Xolod [135]
3 years ago
5

Suppose you will invest $100 per month at the beginning of the month for 40 years with interest rate

Computers and Technology
1 answer:
Alexeev081 [22]3 years ago
5 0

Answer:

future value = 232369.1361

return % = 384.10 %

Explanation:

given data

principal = $100 per month

time = 40 year = 480 months

rate = 6.25 % yearly = 0.0625 yearly = 0.005208 monthly

to find out

total amount of capital at the end of your investment and percentage is  your total return

solution

so here future value formula is

future value = P \frac{(1+r)^{t-1}}{r} * (1+r)   ..........1

here r is rate and t is time and P is principal

so put all value

future value = 100 \frac{(1+0.005208)^{480-1}}{0.005208} * (1+0.005208)

future value = 232369.1361

so

Total capital at the end of investment-Total principle invested over the years

232369.1361 - 100 ( 12 × 40 )

184369.1361

so

Return % = \frac{184369.1361}{48000} × 100

return % = 384.10 %

You might be interested in
Which of the following is NOT a useful strategy when making an informed purchase ?
Jlenok [28]

Answer:

3 Reasons to Use Cash and 3 Reasons to Choose Credit

Credit and debit cards have become so ubiquitous, you'd be forgiven for thinking physical cash is just a couple years away from being declared obsolete and worthless by the government.

Well, as it turns out, the death of dead presidents is greatly exaggerated, as over $1.25 trillion still circulates around the United States alone.

Way too many people use cash for it to ever go away completely, regardless of how much plastic gets wiped every day.

Easier to Watch and Control Your Spending

Actually seeing the cash you owe, as opposed to simply staring at a generic card with no monetary value of its own, can remind you to spend less overall, since all of a sudden the money is real, and real valuable at that.

Financial guru Ramit Sethi, for example, lost his credit card, and spent nothing but cash until a replacement came. He reported spending 18% less when forced to watch his green wad dwindle in real-time.

Some Places Still Don't Take Plastic (or Require a Minimum Purchase Amount)

Amazingly, over half of all small businesses won't take cards, likely because they can't afford the fees.

It's always good to keep at least some cash on you in case you need to make a purchase from one of these places.

Explanation:

3 Reasons To Use Cash (and 3 Reasons To Choose Credit)

Credit and debit cards have become so ubiquitous, you'd be forgiven for thinking physical cash is just a couple years away from being declared obsolete and worthless by the government.

Well, as it turns out, the death of dead presidents is greatly exaggerated, as over $1.25 trillion still circulates around the United States alone.

Way too many people use cash for it to ever go away completely, regardless of how much plastic gets wiped every day.

So why in the world would anydiv still pay with Georges and Bens? Here are a few good reasons why:

Less Chance of Identity Theft

Few things are scarier than hearing that the store you regularly swipe your card at just had a security breach, and that some anonymous criminal may have your identity at their disposal.

Paying cash eliminates that issue -- chunks of metal and pieces of paper stacked in a register tells fraudsters absolutely nothing, while the information sent to vulnerable computers via your bank card can reveal everything.

Easier to Watch and Control Your Spending

Actually seeing the cash you owe, as opposed to simply staring at a generic card with no monetary value of its own, can remind you to spend less overall, since all of a sudden the money is real, and real valuable at that.

Financial guru Ramit Sethi, for example, lost his credit card, and spent nothing but cash until a replacement came. He reported spending 18% less when forced to watch his green wad dwindle in real-time.

Some Places Still Don't Take Plastic (or Require a Minimum Purchase Amount)

Amazingly, over half of all small businesses won't take cards, likely because they can't afford the fees.

It's always good to keep at least some cash on you in case you need to make a purchase from one of these places.

Even if they accept cards, some of these businesses might only do so if you spend X amount, in order to override the fee.

If you entered the store to spend more than the minimum amount, then swipe away. But if you only want a loaf of bread, and they want you to spend $10 before they'll accept your card, just pay for your bread with bread.

That all being said though, there are several cases where plastic owns cash. Here are a few of those:

Online Purchases

Increasing amounts of items can now only be purchased online and with a credit card, or at the very least are extremely difficult to cover with cash.

Plane tickets, while still technically available at a travel agent's physical office, are usually much, much cheaper online, where you can't obviously use cash. The same thing goes for e-books, MP3s, subscriptions to streaming sites, and the like.

The more you shop online, the more reliant you will become on cards in your everyday life.

7 0
3 years ago
______ is the ability of a system to do more than one thing at a time. A. Multibusing c. online processing b. Multiprocessing d.
mrs_skeptik [129]

Answer:

Multiprocessing.

Explanation:

In multiprocessing the system uses two or more processors to do more tasks simultaneously.

8 0
3 years ago
5)What are the differences in the function calls between the four member functions of the Shape class below?void Shape::member(S
Stells [14]

Answer:

void Shape :: member ( Shape s1, Shape s2 ) ; // pass by value

void Shape :: member ( Shape *s1, Shape *s2 ) ; // pass by pointer

void Shape :: member ( Shape& s1, Shape& s2 ) const ; // pass by reference

void Shape :: member ( const Shape& s1, const Shape& s2 ) ; // pass by const reference

void Shape :: member ( const Shape& s1, const Shape& s2 ) const ; // plus the function is const

Explanation:

void Shape :: member ( Shape s1, Shape s2 ) ; // pass by value

The s1 and s2 objects are passed by value as there is no * or & sign with them. If any change is made to s1 or s2 object, there will not be any change to the original object.

void Shape :: member ( Shape *s1, Shape *s2 ) ; // pass by pointer

The s1 and s2 objects are passed by pointer as there is a * sign and not & sign with them. If any change is made to s1 or s2 object, there will be a change to the original object.

void Shape :: member ( Shape& s1, Shape& s2 ) const ; // pass by reference

The s1 and s2 objects are passed by reference  as there is a & sign and not * sign with them. If any change is made to s1 or s2 object.

void Shape :: member ( const Shape& s1, const Shape& s2 ) ; // pass by const reference

The s1 and s2 objects are passed by reference  as there is a & sign and not * sign with them. The major change is the usage of const keyword here. Const keyword restricts us so we cannot make any change to s1 or s2 object.

void Shape :: member ( const Shape& s1, const Shape& s2 ) const ; // plus the function is const

The s1 and s2 objects are passed by reference  as there is a & sign and not * sign with them. const keyword restricts us so we cannot make any change to s1 or s2 object as well as the Shape function itself.

5 0
3 years ago
Give at least five (5) practices that you must observe in your classroom.​
atroni [7]

Answer:

Offer second chances/clean slates.

Be resourceful.

Make learning active.

Be an advocate.

Pursue lifelong learning.

8 0
3 years ago
Read 2 more answers
Zachary is a member of Future Business Leaders of America at his school and is competing in the Impromptu Speaking competition.
Scrat [10]

Answer:

c start off with a story

Explanation:

I just took the test

4 0
3 years ago
Read 2 more answers
Other questions:
  • How to revert a dismissed javascript popup alert box in chrome?
    5·1 answer
  • Carol typed a memo to send to everyone in her department. To create this memo, she used a _____. spreadsheet word processor fax
    10·2 answers
  • A company wants a recruiting app that models candidates and interviews; displays the total number of interviews each candidate r
    6·1 answer
  • This is in government
    15·1 answer
  • How are logical operators used?
    14·1 answer
  • In client server network, there is no central server //// true or false​
    8·1 answer
  • Suppose Client A initiates a Telnet session with Server S. At about the same time, Client B also initiates a Telnet session with
    13·1 answer
  • Answer if you know Javascript, html, css, python, and Ruby.
    12·1 answer
  • Which generation computer supported GUI operating system?​
    11·1 answer
  • Class.object.method is an example of using the ______<br> to access the elements of a class.
    9·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!