Answer:
Total amount at the end of 4 years = $135.16
Explanation:
A simple interest account pays interest on only the sum deposited at an annual rate for a specified period of time without compounding or adding the interest earned in a particular period in the calculation of interest earning for the next period. Thus, if 1000 is invested and interest s earned at 10% then the interest earned will remain constant for every period the money is still deposited in the account.
The formula to calculate interest under simple interest method is,
Interest = Principal * Annual Rate * Time in years
Total Interest earned = 109 * 6% * 4
Total interest earned = 26.16
Total amount at the end of 4 years = Principal + Interest
Total amount at the end of 4 years = 109 + 26.16
Total amount at the end of 4 years = $135.16
Answer: The following would the accountant do related to the compilation engagement: <u><em>Issue a compilation report even though review procedures were performed on the engagement.</em></u>
Under Statements of Standards for Accounting and Review Services (SSARS), the accountant decided to perform some analytical procedures.
<u><em>Therefore, the correct option is (d)</em></u>
The ethical dilemma is whether u wanna look at the safety at staff or customers or wanna remove the driver from the job bc he could get drunk
Customers and staff- primary stakeholders
staff union and future shareholders of the company bc the image of the bus company will get harmed- secondary stakeholders
i only know the answer to the first 2 hope this helps x!!
Compared to stocks, mutual funds offer investors a relatively limited range of choices - false
Answer is False
What are mutual funds?
A mutual fund is a business enterprise that swimming pools money from many buyers and invests the cash in securities which include stocks, bonds, and quick-term debt. The blended holdings of the mutual fund are known as its portfolio. buyers purchase stocks in mutual finances.
Are mutual funds safe?
Mutual funds are in large part a secure investment, seen as being an excellent manner for investors to diversify with minimum hazard. but there are circumstances in which a mutual fund isn't always a great choice for a marketplace player, especially on the subject of costs.
What's mutual funds and types?
A mutual fund is a basket of numerous investments, together with shares, bonds, and cash. There are three primary styles of mutual funds: equity finances, constant-profits budget, and cash market budget. every of those sorts has a distinctive risk stage associated with it. There are two predominant blessings to mutual funds.
Can I get monthly income from mutual funds?
Sure, you may get month-to-month earnings from mutual funds. The first-class way for that is to opt for SWP or Systematic Withdrawal Plan in a mutual fund scheme. via SWP, you could withdraw a set quantity on a monthly or quarterly foundation from the investment you've got made in any mutual fund scheme.
Learn more about Mutual funds here:- brainly.com/question/4521829
#SPJ4
Answer:
Here, The Manager class is a child class of Employee class. There is an “Is-A” relationship between the manager and employee classes. Here Manager class extends from Employee class. That means Manager “is an” Employee.
It means Manager class objects will have the fields of the Employee class but it cannot access them on its own as my Name, my Title and my Age are declared private. It has to use super keyword and super class methods and constructors to access those fields. But, Manager class can access mySalary on its own because it is declared protected. As a sub class object can call super class methods ( which are public and protected ), the sub class objects can access those field indirectly by using super class constructors and methods. It means the Manager class cannot directly control the Employee class fields without using Employee class constructors and methods.