answer.
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
saul85 [17]
1 year ago
5

A money manager, who is a member of CFA Institute, states that, "Our aggressive growth fund produced a 12% annualized return las

t quarter. This illustrates the superior results our firm produces." The fund return stated by the manager is accurate. Is this a violation of Standard III(D) Performance Presentation?
A) Yes.
B) No, because a brief summary of results is acceptable as long as more complete information is made available.
C) No, because the manager has stated a fact.
Business
1 answer:
bearhunter [10]1 year ago
8 0

Answer:

A) Yes.

Explanation:

The Standard III(D) Performance Presentation enforces that all CFA members must make sure that the information given to the clients about their investment performance is fair, accurate, and complete. Therefore in this scenario the statement would be a violation of this act, because even though the statement is accurate, it is not complete and is missing too much information about the investment and all of it's details.

You might be interested in
Without specializing, the total output for both countries after two days would be 48.
vampirchik [111]

The first blank would be 32 because you ,multiply 16 by 2. For the second blank it would be 16 because you multiply 8 by 2.

4 0
1 year ago
Read 2 more answers
Kiddy Toy Corporation needs to acquire the use of a machine to be used in its manufacturing process. The machine needed is manuf
xenn [34]

Answer:

Option A net worth  -215,906.03

Option B net worth  -210, 159.75

It is a better deal to use the machine through lease than purchase it as the net worth is lower.

Explanation:

Purchase the machine:

-164,000 purchase cost

PV of the maintenance cost

C \times \frac{1-(1+r)^{-time} }{rate} = PV\\

C -9,000.00

time 10

rate 0.08

-9000 \times \frac{1-(1+0.08)^{-10} }{0.08} = PV\\

PV -$60,390.7326

PV of the salvage value

\frac{Maturity}{(1 + rate)^{time} } = PV  

Maturity  14,000.00

time  10.00

rate  0.08000

\frac{14000}{(1 + 0.08)^{10} } = PV  

PV   6,484.7088

<em>net worth: </em>

-162,000 - 60,390.73 + 6,484.70 = -215,906.03

PV of the lease: (annuity-due)

C \times \frac{1-(1+r)^{-time} }{rate} (1+rate)= PV\\

C 29,000.00

time 10

rate 0.08

29000 \times \frac{1-(1+0.08)^{-10} }{0.08} (1+0.08) = PV\\

PV $210,159.7494

6 0
2 years ago
Annie invested in a set of stocks and made $4,000 in profit. She has learned that she will have to pay taxes on the profit she h
Temka [501]
State tax is 5%, so 0,05
0,05•4000=200$

Federal tax is 25% so 0,25
0,25•4000=1000$

Total of taxes to pay =1000+200=1200$

So the real profit will be
4000-1200=3800$

The real value of Annie's profit is 3800$



8 0
1 year ago
Read 2 more answers
This program will store roster and rating information for a soccer team. coaches rate players during tryouts to ensure a balance
Vedmedyk [2.9K]

Answer:

Explanation:

#include <iostream>

#include <vector>

using namespace std;

int main() {

   vector<int> jerseyNumber;

   vector<int> rating;

   int temp;

   for (int i = 1; i <= 5; i++) {

       cout << "Enter player " << i

            << "'s jersey number: ";

       cin >> temp;

       jerseyNumber.push_back(temp);

       cout << "Enter player " << i

            << "'s rating: ";

       cin >> temp;

       rating.push_back(temp);

       cout << endl;

   }

   cout << "ROSTER" << endl;

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

       cout << "Player " << i + 1 << " -- "

            << "Jersey number: " << jerseyNumber.at(i)

            << ", Rating: " << rating.at(i) << endl;

   char option;

   '

   while (true) {

       cout << "MENU" << endl;

       cout << "a - Add player" << endl;

       cout << "d - Remove player" << endl;

       cout << "u - Update player rating" << endl;

       cout << "r - Output players above a rating"

            << endl;

       cout << "o - Output roster" << endl;

       cout << "q - Quit" << endl << endl;

       cout << "Choose an option: ";

       cin >> option;

       switch (option) {

           case 'a':

           case 'A':

               cout << "Enter a new player's"

                    << "jersey number: ";

               cin >> temp;

               jerseyNumber.push_back(temp);

               cout << "Enter the player's rating: ";

               cin >> temp;

               rating.push_back(temp);

               break;

           case 'd':

           case 'D':

               cout << "Enter a jersey number: ";

               cin >> temp;

               int i;

               for (i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       jerseyNumber.erase(

                               jerseyNumber.begin() + i);

                       rating.erase(rating.begin() + i);

                       break;

                   }

               }

               break;

           case 'u':

           case 'U':

               cout << "Enter a jersey number: ";

               cin >> temp;

               for (int i = 0; i < jerseyNumber.size();

                    i++) {

                   if (jerseyNumber.at(i) == temp) {

                       cout << "Enter a new rating "

                            << "for player: ";

                       cin >> temp;

                       rating.at(i) = temp;

                       break;

                   }

               }

               break;

           case 'r':

           case 'R':

               cout << "Enter a rating: ";

               cin >> temp;

               cout << "\nABOVE " << temp << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   if (rating.at(i) > temp)

                       cout << "Player " << i + 1

                            << " -- "

                            << "Jersey number: "

                            << jerseyNumber.at(i)

                            << ", Rating: "

                            << rating.at(i) << endl;

               break;

           case 'o':

           case 'O':

               cout << "ROSTER" << endl;

               for (int i = 0; i < jerseyNumber.size();

                    i++)

                   cout << "Player " << i + 1 << " -- "

                        << "Jersey number: "

                        << jerseyNumber.at(i) << ", Rating: "

                        << rating.at(i) << endl;

               break;

           case 'q':

               return 0;

           default:

               cout << "Invalid menu option."

                    << " Try again." << endl;

       }

   }

}

4 0
1 year ago
Maggie’s Skunk Removal Corp.’s 2018 income statement listed net sales of $14.5 million, gross profit of $9.90 million, EBIT of $
Alecsey [184]

Explanation:

The computations are as follows

a. Profit margin

= Net Income available to common stockholders ÷ Net Sales

= $5.2 Million ÷ $14.5 Million

= 35.86%

b. Gross profit margin

= Gross Profit ÷ Net Sales

= $9.90 Million ÷ $14.5 Million

= 68.28%

c. Operating profit margin

= EBIT ÷ Net Sales

= $7.60 Million ÷ $14.5 Million

= 52.41%

d. Basic earning power

= EBIT ÷ Total Assets

= $7.6 Million ÷ $54.5 Million

= 13.94%

e. Return on assets

= Net Income available to common stockholders ÷ Total Assets

= $5.2 Million ÷ $54.5 Million

= 9.54%

8 0
2 years ago
Other questions:
  • How does a budget and saving increase your ability to purchase items you want or need over time?
    11·2 answers
  • A company had the following purchases and sales during its first year of operations: Purchases Sales January: 10 units at $120 6
    13·1 answer
  • Uniform Supply accepted a $4,800, 90-day, 10% note from Tracy Janitorial on October 17. If the note is dishonored, but Uniform S
    15·1 answer
  • Rede Inc. manufactures a single product. Variable costing net operating income was $63,800 last year and its inventory decreased
    11·1 answer
  • Which of the following organizations is likely to use the multiple-factor index method to estimate the market potential? a firm
    15·1 answer
  • Vasquez Construction has been awarded a contract by a local school board to build a new public school and must provide a perform
    14·1 answer
  • Delta Company sells bells to customers for $1 each. The variable cost to manufacture the bells is 10 cents. If the rattle depart
    15·1 answer
  • You work in the marketing research department of Burger King. Burger King has developed a new cooking process that makes the ham
    13·1 answer
  • Second-degree price discrimination: Multiple Choice results in transfer pricing. None of the answers are correct. is the practic
    9·1 answer
  • Rockwood International needs to make risky decisions on a daily basis. Therefore, its managers are likely to
    8·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!