1. O'Brien Ltd.'s outstanding bonds have a $1,000 par value, and they mature in 25 years. Their yield to maturity is 9.25%, they pay interest semiannually, and they sell at a price of $875. What is the bond's coupon interest rate?
2. Stocks X just paid a dividend of $1 and a has a dividend growth rate of 10 percent. If the required rate of return is 20 percent, what is the value of the stock in one year?
3. The price of Natter Corporation’s stock is $50. The stock’s dividend is expected to grow at a constant rate of 8 percent, and it just paid a dividend of $2. What is the stock's expected rate of return?
4. Assume you think the expected rate of return is too low. What should you do?
Group of answer choices
Sell the stock if you own it.
Not enough information to say.
Do nothing
Buy the stock.
5. Assume a firm's WACC is 10 percent. Calculate the NPV for the following project if its cost was $8,000 and the annual expenditures and costs were:
|
Year 1 |
Year 2 | Year 3 | Year 4 | Year 5 |
| $3,000 | $3,000 | $3,000 | $3,000 | -$2,000 |
6. Calculate the IRR for the following project if its cost was $8,000 and the annual expenditures and costs were:
|
Year 1 |
Year 2 | Year 3 | Year 4 | Year 5 |
| $3,000 | $3,000 | $3,000 | $3,000 | -$2,000 |
In: Finance
Suppose the administrator of a clinic is interested in the number of visits per person per year for those that are insured. After selecting 15 people the number of visits was recorded as the following:
| Patient # | Annual Number of visits |
| 1 | 8 |
| 2 | 7 |
| 3 | 7 |
| 4 | 6 |
| 5 | 6 |
| 6 | 5 |
| 7 | 5 |
| 8 | 5 |
| 9 | 4 |
| 10 | 3 |
| 11 | 3 |
| 12 | 2 |
| 13 | 2 |
| 14 | 1 |
| 15 | 1 |
By using Excel, data analysis, five numbers summary, and the Rubric.docx
Answer the following Question, Submit both (Excel file and word document)
1. The mean, mode, median of the annual number of visits.
2. Five points summary [ first Quartile, Second Quartile, third quartile, Maximum and Minimum]
3. Draw the box and whisker plot
4. Range, IQR
5. What is variance and standard deviation?
Why would knowing the variance and standard deviation of a distribution for a given data point be important for a Healthcare Administrator?
6. The skewness (Indicate if it is positively/negatively skewed) look over the video.
What would it mean if the distribution was negatively or positively skewed?
Why would this information be important for a Healthcare Administrator to know?
7. Do you have outiler in the number of visit? (if no explain how can you tell?)
8.Write a summary regarding the number of visits using the above information. [at least 500 words]
In: Math
Twelve dogs from three different breeds (basenji, Shetland sheepdog, beagle) were either indulged or disciplined between the third and eight weeks of their lives. The indulged animals were encouraged in play, aggression, and climbing on their caretaker. In contrast, the disciplined dogs were retrained to their handler’s lap, taught to sit, stay, come, and so on. The indulged-disciplined treatment was inspired by reports that overindulged children cannot often inhibit their impulses in structured situations. Each dog was taken into a room with a bowl of meat. The dog was hungry but the handler prevented it from eating for 3 minutes by hitting on the rump with a newspaper and shouting ‘no’. The handler left the room and the length of time it took the dog to begin eating the meat was recorded. Presumably, the indulged dog should go to the food more quickly than the disciplined dogs.
|
Basenjis |
Shetlands |
Beagles |
|
|
Indulged |
1 |
7 |
9 |
|
4 |
10 |
7 |
|
|
3 |
10 |
10 |
|
|
1 |
9 |
10 |
|
|
2 |
6 |
8 |
|
|
2 |
8 |
9 |
|
|
Disciplined |
5 |
9 |
2 |
|
1 |
9 |
6 |
|
|
4 |
8 |
3 |
|
|
1 |
10 |
4 |
|
|
2 |
5 |
5 |
|
|
3 |
8 |
3 |
a. State the hypotheses for each of the three separate tests included in the two-factor ANOVA.
b. Use SPSS or manual calculation to test the significance of main and the interaction effects.
c. Present the effect size for each of the three tests
In: Math
Three years from now (now =Year 0) the equipment that Dark Star Technologies uses to coat and protect the surfaces on its products will have to be replaced. Dark Star plans to operate the new equipment for 7 years (Years 4 to 10). The company is considering two procurement options.
Option 1: MAKE the manufacturing equipment in-house. The yearly acquisition costs associated with developing the equipment in-house are as follows: Year 1 = $200,000, Year 2 = $700,000, Year 3 = $1,000,000. The Annual Operation & Maintenance Cost of the in-house developed equipment will be $100,000 (Years 4 to 10). Assume the equipment has zero salvage value.
Option 2: BUY manufacturing equipment available from ACME Specialties. The acquisition cost associated with purchasing the equipment is $1,000,000 (Year 3). The Annual Operation and Maintenance Cost of the manufacturing equipment purchased from Acme Specialties will be $300,000 (Years 4 to 10). Assume the equipment has zero salvage value. For an interest rate = 10%
a) Calculate the equivalent cost at future Year 3 of Option 1 and Option 2. Year 3 is when the system goes into operation, i.e., the end of the production phase for Option 1 (MAKE) or when the purchased equipment is ready for use OPTION 2 (BUY).
b) Which option should Dark Star Technologies choose based on equivalent costs?
Please show what equations are used
In: Finance
4.24 LAB*: Program: Drawing a half arrow
This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width.
(1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt)
(2) Modify the given program to use a loop to output an arrow base of width arrowBaseWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt)
(3) Modify the given program to use a loop to output an arrow head of width arrowHeadWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts)
(4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow base width. (1 pt)
while (arrowHeadWidth <= arrowBaseWidth) {
// Prompt user for a valid arrow head value
}
Example output for arrowBaseHeight = 5, arrowBaseWidth = 2, and arrowHeadWidth = 4:
Enter arrow base height: 5 Enter arrow base width: 2 Enter arrow head width: 4 ** ** ** ** ** **** *** ** *
In: Computer Science
A car rental company allows its customers to pick up a rental car at one location and return it to any of its locations. Currently, two locations (1 and 2) have 16 and 18 surplus cars, respectively; and four locations (3, 4, 5, and 6) each need 10 additional cars. Because 34 surplus cars are available at locations 1 and 2 combined, and 40 cars are needed at locations 3, 4, 5, and 6 combined, some locations will not receive as many cars as they need. Management wants to make sure all surplus cars are sent where they are needed, and that each location needing cars receives at least five. Management wants to do this with the lowest total miles added to the cars. The distance (in miles) from locations 1 and 2 to the other locations are summarized in the following table:
| Cost | Location 3 | Location 4 | Location 5 | Location 6 |
| Location 1 | 5.4 | 1.7 | 2.3 | 3.0 |
| Location 2 | 2.4 | 1.8 | 1.9 | 3.1 |
(1.1) Formulate a linear programming model for this problem
(1.2) Create a spreadsheet model for this problem and solve it using Solver. Submit your Excel file on iLearn.
(1.3) What is the optimal solution?
(1.4) Which location is receiving the fewest cars?
(1.5) Suppose location 6 must have at least eight cars shipped to it. What impact does this have on the optimal objective function value?
In: Operations Management
Program: Drawing a half arrow
This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width.
(1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt)
(2) Modify the given program to use a loop to output an arrow base of width arrowBaseWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt)
(3) Modify the given program to use a loop to output an arrow head of width arrowHeadWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts)
(4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow base width. (1 pt)
while (arrowHeadWidth <= arrowBaseWidth) {
// Prompt user for a valid arrow head value
}
Example output for arrowBaseHeight = 5, arrowBaseWidth = 2, and arrowHeadWidth = 4:
Enter arrow base height: 5 Enter arrow base width: 2 Enter arrow head width: 4 ** ** ** ** ** **** *** ** *
In: Computer Science
Solve in C language
This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width.
(1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt)
(2) Modify the given program to use a loop to output an arrow base of width arrowBaseWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt)
(3) Modify the given program to use a loop to output an arrow head of width arrowHeadWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts)
(4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow base width. (1 pt)
while (arrowHeadWidth <= arrowBaseWidth) {
// Prompt user for a valid arrow head value
}
Example output for arrowBaseHeight = 5, arrowBaseWidth = 2, and arrowHeadWidth = 4:
Enter arrow base height: 5 Enter arrow base width: 2 Enter arrow head width: 4 ** ** ** ** ** **** *** ** *
In: Computer Science
QUESTION 41
Sally Homes invested in a diversified portfolio of equities about 5 years ago. Overall, the performance has been in line with the market. However, Stock A, which Sally has always thought was a good company, has recently been handily outperforming the averages. Despite recent news articles and analyst reports indicating a potential slowdown in earnings, Sally moved an additional 5% of her portfolio into Stock A. Which of the following behavioral mistakes may she have made?
|
a. Representativeness. |
||
|
b. Cognitive dissonance. |
||
|
c. Irrational escalation. |
||
|
d. Both b & c. |
QUESTION 42
John Bell, a money manager at a large regional investment firm, has been outperforming the market for several years. He's considering a large investment in Stock Q because the company's last three product introductions sold poorly. He thinks the company is well managed, but just had bad luck recently. He sorted through several analyst reports and found two that support his opinion. If he buys the stock, which behavioral mistakes may he be making? (1) Overconfidence. (2) Anchoring. (3) Gambler's fallacy. (4) Confirmation bias.
|
a. 1 and 2. |
||
|
b. 2 and 3. |
||
|
c. 1, 3 and 4. |
||
|
d. 1, 2, 3 and 4. |
In: Finance
In: Math