Questions
Q1 a) Given the following cashflows for Project Omega, what is the payback period in years...

Q1

a)

Given the following cashflows for Project Omega, what is the payback period in years assuming the cashflows occur annually?

Year Cashflows of Project Omega
0 -90,000
1 20,000
2 25,000
3 50,000
4 40,000
5 150,000

b)

Project X and Y. The following are the cash flows of two projects:

Year Project X Project Y
0 -100,000 -50,000
1 50,000 20,000
2 40,000 30,000
3 30,000 30,000
4 20,000
5 10,000

If the discount rate is 18% is the project with the highest profitability index also the one with the highest NPV?

Yes

No

c)

he cashflows for an investment in Factory X are listed below. Using the discounted payback method of capital budgeting, what is the payback period for this investment expressed in years, assuming that the cashflows occur annually and using a discount rate of 20%.  

Year Factory X
0 -       300,000
1            50,000
2            50,000
3          100,000
4          100,000
5          200,000
6          200,000

In: Finance

QUESTION 37 Because of the problems of adverse selection and moral hazard, it has been suggested...

QUESTION 37

Because of the problems of adverse selection and moral hazard, it has been suggested that the World Bank and International Monetary Fund

make loans to the riskiest nations so that private investors will not be tempted to take a risk.

not make loans to risky nations because there is a high demand for funds from safer nations.

loan only to countries that have free elections.

impose tougher preconditions on borrowers.

QUESTION 38

The three sources of private direct investment in developing nations are

bank loans, portfolio investments, and foreign direct investments.

bank loans, government loans, and Eurobond issues.

portfolio loans, IMF loans, and government loans.

foreign direct investment, government loans, and Eurobond issues.

QUESTION 39

Countries with the highest degrees of governmental bureaucratic inefficiency index

typically are nations with the highest real GDP per capita.

normally have the highest measured levels of economic freedom.

normally have the lowest measured levels of dead capital.

typically are nations with the lowest real GDP per capita.

QUESTION 40

The purchase of less than 10 percent of the shares of ownership in a foreign company is referred to as a

negligible investment.

foreign indirect investment.

foreign direct investment.

portfolio investment.

QUESTION 41

Those who advocate a role for the World Bank in establishing systems of well- defined property and contract rights in developing nations would argue that

such changes would make these economies more productive.

asymmetric information is currently not a problem in these countries.

such changes would eliminate the need for long-term capital funding.

such changes would eliminate the need for short-term loans.

In: Economics

Questions on Mutually Exclusive Equal-length (MEEL) Projects. The following questions relate to these two projects, each...

Questions on Mutually Exclusive Equal-length (MEEL) Projects.

The following questions relate to these two projects, each with rocc = 10.0%. The table shows cash flows for each project.

Project EOY 0 EOY 1 EOY 2
Proj. A -100.00 20.00 120.00
Proj. B -50.00 10.00 80.00

1.What is the BCR of project A? Write your answer to two decimal places.

2.What is the NPV of project A? Write your answer to two decimal places.

3.What is the BCR of Project B? Write your answer to two decimal places.

4.What is the NPV of Project B? Write your answer to two decimal places.

5.If you have an unlimited budget, which project should you choose

Not enough information is provided to answer this question.

Neither.

Project B)

Project A)

They are both equally good.

6.What is your reasoning behind your answer to the above question?

This project adds the most value (wealth) to my firm.

When analysis methods conflict, the projects are assumed to be of equal value

My money will grow at the fastest rate with this project.

This project has the biggest bang for each dollar of cash invested.

7.Why?

This combination gives the highest cumulative IRR

This combination gives the highest total BCR

This set gives the highest total NPV.

This set minimizes costs while providing an overall positive NPV,

8.Payback Method Question.

The payback method is best described as:

D) A and B

C) A method that relies on analysis of GAAP financial statements

B) A method that is good for evaluating low-risk, long-duration projects

A) A DCF Method

E) None of the other mentioned answers

In: Finance

I JUST NEED THE ANSWER, THX. Three different companies each purchased trucks on January 1, 2018,...

I JUST NEED THE ANSWER, THX.

Three different companies each purchased trucks on January 1, 2018, for $80,000. Each truck was expected to last four years or 250,000 miles. Salvage value was estimated to be $4,000. All three trucks were driven 78,000 miles in 2018, 55,000 miles in 2019, 50,000 miles in 2020, and 70,000 miles in 2021. Each of the three companies earned $69,000 of cash revenue during each of the four years. Company A uses straight-line depreciation, company B uses double-declining-balance depreciation, and company C uses units-of-production depreciation.
Answer each of the following questions. Ignore the effects of income taxes.

a-1. Calculate the net income for 2018? (Round "Per Unit Cost" to 3 decimal places.)

a-2. Which company will report the highest amount of net income for 2018?

b-1. Calculate the net income for 2021? (Round "Per Unit Cost" to 3 decimal places.)

b-2. Which company will report the lowest amount of net income for 2021?

c-1. Calculate the book value on the December 31, 2020, balance sheet? (Round "Per Unit Cost" to 3 decimal places.)

c-2. Which company will report the highest book value on the December 31, 2020, balance sheet?

d-1. Calculate the retained earnings on the December 31, 2021, balance sheet?

d-2. Which company will report the highest amount of retained earnings on the December 31, 2021, balance sheet?

E.Which company will report the lowest amount of cash flow from operating activities on the 2020 statement of cash flows?

In: Accounting

using C++ 8. Star Search A particular talent competition has 5 judges, each of whom awards...

using C++

8. Star Search
A particular talent competition has 5 judges, each of whom awards a score between 0 and
10 to each performer. Fractional scores, such as 8.3, are allowed. A performer’s final score
is determined by dropping the highest and lowest score received, then averaging the 3
remaining scores. Write a program that uses these rules to calculate and display a
contestant’s score. It should include the following functions:
• void getJudgeData() should ask the user for a judge’s score, store it in a reference
parameter variable, and validate it. If the user does not enter valid value, keep displaying error message shown in test cases until the user types in the valid value. This function should be called by main once for each
of the 5 judges.
• double calcScore() should calculate and return the average of the 3 scores that
remain after dropping the highest and lowest scores the performer received. This
function should be called just once by main and should be passed the 5 scores.
Two additional functions, described below, should be called by calcScore, which uses the
returned information to determine which of the scores to drop.
• double findLowest() should find and return the lowest of the 5 scores passed to it.
• double findHighest() should find and return the highest of the 5 scores passed to it.

test case

Judge #1 - Please enter a score between 0.0 and 10.0 : 5

Judge #2 - Please enter a score between 0.0 and 10.0 : 6.5

Judge #3 - Please enter a score between 0.0 and 10.0 : 9.5

Judge #4 - Please enter a score between 0.0 and 10.0 : 5.5

Judge #5 - Please enter a score between 0.0 and 10.0 : 6

Final Score : 6

In: Computer Science

Put each problem on a separate worksheet in an Excel file. Type the tabular data into...

  • Put each problem on a separate worksheet in an Excel file. Type the tabular data into the spreadsheet
  • Make Excel do all of the necessary calculations
  • Report answers on the worksheet
  • Label answers as the questions are labelled: a, b, c,…
  • Use the probability notation p(A), p(Aand B),… etc

2. A manufacturing firm in Pittsburgh, Pennsylvania receives shipments of part from two suppliers (we’ll call them A1 and A2. The probability that the parts come from A1 is 0.65, the probability that they come from A2 is 0.35.

Past experience has shown that if the parts came from A1, the probability that they are good is 0.98. If the parts came from A2, the probability that they are good is 0.95.

a. Draw the probability tree

b. What is the probability that a part came from A1 and is good?

c. What is the probability that a part came from A2 and is bad?

d. Using the information given and your results from b and c complete the contingency table below

Supplier A1

Supplier A2

Good part

Bad part

e. What is the probability that a randomly selected part is bad?

f. A randomly selected part has been found to be bad. What is the probability that is from Supplier A1?

g. A randomly selected part has been found to be bad. hat is the probability that is from Supplier A2?

In: Statistics and Probability

The probability that a person in the United States has type B​+ blood is 10​%. Five...

The probability that a person in the United States has type

B​+

blood is

10​%.

Five

unrelated people in the United States are selected at random. Complete parts​ (a) through​ (d).

​(a) Find the probability that all

five

have type

B​+

blood.The probability that all

five

have type

B​+

blood is

nothing.

​(Round to six decimal places as​ needed.)

​(b) Find the probability that none of the

five

have type

B​+

blood.The probability that none of the

five

have type

B​+

blood is

nothing.

​(Round to three decimal places as​ needed.)

​(c) Find the probability that at least one of the

five

has type

B​+

blood.The probability that at least one of the

five

has type

B​+

blood is

nothing.

​(Round to three decimal places as​ needed.)

​(d) Which of the events can be considered​ unusual? Explain. Select all that apply.

A.

The event in part​ (b) is unusual because its probability is less than or equal to 0.05.

B.

The event in part​ (c) is unusual because its probability is less than or equal to 0.05.

C.

None of these events are unusual None of these events are unusual.

D.

The event in part left parenthesis a right parenthesis is unusual because its probability is less than or equal to 0.05The event in part (a) is unusual because its probability is less than or equal to 0.05.

In: Statistics and Probability

An economist estimates a 65% probability that the economy will expand next year. The technology sector...

An economist estimates a 65% probability that the economy will expand next year. The technology sector has a 70% probability of outperforming the market if the economy expands and a 20% probability of outperforming the market if the economy does not expand. Given the new information that the technology sector will not outperform the market, what is the probability that the economy will not expand?

In: Statistics and Probability

You randomly draw five cards from a standard 52-card deck. a) What is the probability of...

You randomly draw five cards from a standard 52-card deck.
a) What is the probability of getting exactly 1 Queen?
b) What is the probability of getting exactly two Queens?
c) What is the probability of getting exactly three Queens?
d) What is the probability of getting no Queens?

In: Statistics and Probability

A normal population has a mean of 81 and a standard deviation of 6. You select...

A normal population has a mean of 81 and a standard deviation of 6. You select a sample of 36. Use Appendix B.1 for the z-values.

Compute the probability that the sample mean is: (Round the z-values to 2 decimal places and the final answers to 4 decimal places.)

a. Less than 79.

Probability            

b. Between 79 and 83.

Probability            

c. Between 83 and 84.

Probability            

d. Greater than 84.

Probability            

In: Statistics and Probability