You are the recipient of a gift that will pay you $25,000 one year from now and every year thereafter for the following 24 years. The payments will increase in value by 2.5 percent each year. If the appropriate discount rate is 8.5 percent, what is the present value of this gift? STEPS FOR BAII PLUS CALCULATOR PLEASE!
In: Finance
Q1. Study the effect of hydrogen as a chain transfer agent on the ethylene and propylene polymerization.
In: Other
We are evaluating a project that costs $856,800, has a nine-year life, and has no salvage value. Assume that depreciation is straight-line to zero over the life of the project. Sales are projected at 90,000 units per year. Price per unit is $56, variable cost per unit is $40, and fixed costs are $770,000 per year. The tax rate is 25 percent, and we require a return of 12 percent on this project
. 2. What is the degree of operating leverage at the accounting break-even point? (Do not round intermediate calculations and round your answer to 3 decimal places, e.g., 32.161.)
b-1. Calculate the base-case cash flow and NPV. (Do not round intermediate calculations. Round your cash flow answer to the nearest whole number, e.g., 32. Round your NPV answer to 2 decimal places, e.g., 32.16.)
b-2. What is the sensitivity of NPV to changes in the quantity sold? (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.)
c. What is the sensitivity of OCF to changes in the variable cost figure? (A negative answer should be indicated by a minus sign. Do not round intermediate calculations and round your answer to the nearest whole number, e.g., 32. )
In: Finance
Reflect on the recent coronavirus crisis and its potential effect on foreign companies with manufacturing facilities, retail outlets, or offices in China. What ethical responsibility do companies have to their employees and customers in China? What is the responsibility of companies to other stakeholders such as investors or workers in other countries?
In: Operations Management
1) Dob Co has a Beta of 1.32 at a time when the expected market return is 8.7% and the risk free rate is 2.2%. What is Dob Co's expected return?
(Enter your response as a percentage with two decimal places, ex: 12.34).
2) If the market risk premium is 11%, the risk-free rate is 3.8%, and Nate Corp has a beta of 2.03, what is the required return for Nate Corp?
(Enter your response as a percentage with two decimal places, ex: 12.34)
3) What is the price of bond paying a coupon rate of 4.5% that has a par value of $1000, and has 7 years to maturity with a Yield to Maturity of 2.3%?
(Enter the absolute value of your response to two decimal places, ex: 123.45 NOT -123.45)
4) What is the yield to maturity for a bond with 12 years to maturity, a coupon rate of 4.5% making payments semi-annually, a face value of $1000 if it currently sells for $957?
(Enter your response as a percentage with two decimal places, ex: 12.34)
Please get me the answer for all the 4 question please.. please please
In: Finance
In share economy there are ethical challenges to be considered. List one challenge and apply deontology or teleology to explain how these might be overcome.
In: Operations Management
The daily requirements for patrol officers are: Monday:4 officers Tuesday:5 officers Wednesday:6 officers Thursday:7 Officer Friday:10 Officers Saturday:9 officers Sunday:9 officers Question: Each officer works 5 days a week and must have 2 consecutive days off. You are scheduling officers to work the appropriate days of the week. The second officer you schedule is to work which days of the week?
In: Operations Management
Given an array ? of numbers and a window size ?, the sliding window ending at index ? is the subarray ?[? − ? + 1], ⋯ , ?[?] if ? ≥ ? − 1, and ?[0], ⋯ , ?[?] otherwise. For example, if ? = [0, 2, 4, 6, 8] and ? = 3, then the sliding windows ending at indices 0, 1, 2, 3 and 4 are respectively [0], [0, 2], [0, 2, 4], [2, 4, 6], and [4, 6, 8]. Write a method, movingAverage, that given as input an array ? of numbers and a window size ?, returns an array ? with the same length as ?, such that for every index ?, ?[?] is the average of the numbers in the sliding window ending at index ?. The skeleton for the method is provided in the file MovingAverage.java.
The following is a sample run.
Input: ? = [0,2, 4, 6, 8], ? = 3
Return: [0, 1, 2, 4, 6]
Explanation: As explained above, the sliding windows at indices 0, 1, 2, 3 and 4 are respectively
[0], [0,2], [0, 2, 4], [2, 4, 6], and [4, 6, 8]. The average of the numbers in these sliding windows are respectively = 0, = 1, = 2, = 4, and = 6.
Your method must have time complexity ?(?), where ? is the length of the input array ?.
Hint: You may find a queue useful.
public class MovingAverage {
public double[] movingAverage(int[] A, int w) {
//Replace this line with your
return statement
return null;
}
}
In: Computer Science
int count=0;
for (int i=2; i <= 4; i++ ) {
StdOut.println(i);
for (int j=1; j <3; j++) {
count++;
StdOut.println(i +" " + j +" "+ count);
}
}
count |
i |
j |
I print |
||
0 |
2 |
1 |
3 |
1 |
1 |
1 |
2 |
3 |
2 |
2 |
|
3 |
3 |
3 |
3 |
||
4 |
|||||
3 |
|||||
StdOut.println( “ call 1” + x );
public static double funk2( int a, double b, int c) {
int x = 15;
double result;
result = b - a*c;
if ( result <= x)
StdOut.println( " result " + b);
else
StdOut.println(" comp " + result);
return result;
}
In: Computer Science
Create CRC card, class diagram and an object diagram for the school students' healthcare system that may have the entities represent a system for a student_patient billing system. Include only the attributes that would be appropriate for this context.
Student_Patient (age, name, hobbies, blood type, occupation, insurance carrier, address, phone)
Student_Insurance carrier (name, number of patients on plan, address, contact name, phone)
University_Doctor (specialty, provider identification number, golf handicap, age, phone, name)
In: Computer Science
Bronner’s Christmas Store is one of the largest in America. Bronner’s currently has one store located in Frankenmuth, Michigan. Bronner’s has decided to open up a second store in Heidelberg, Germany. Reflecting on each chapter in our textbook, respond to each of the following questions as though you were hired to be a consultant to Bronner’s.
What will be your staffing policy in Germany?
In: Operations Management
. As input you are given two arrays: an array of numbers ? and an array ? of queries where each query is a target number. The array ? is unsorted and may contain duplicates. Your goal is, for each query ? in the array ?, count the number of pairs in the array ? that sums up to ?; that is, the number of distinct pairs of indices [?, ?], with ? < ?, such that ?[?] + ?[?] = ?. Write a method, twoSumQuery, that given an array of numbers ? and an array ? of queries, returns an array ? with the same length as ?, such that for every index ?, ?[?] is the answer to query ?[?]. Let ? denote the length of ? and ? the length of ?. Suppose that in the actual input for this problem, we have the condition that ? > ? . For example, ? = 1000 and ? = 10,000,000. Your method must have time complexity ?(?).
The following is a few sample runs:
Input : ? = [0, 1, 2, 3, 4], ? = [1, 3, 6, 10]
Return: [1, 2, 1, 0]
Explanation: One pair in ? sums up to 1, namely (0, 1). Two pairs in ? sum up to 3, namely (0, 3) and (1, 2). One pair in ? sum up to 6, namely (2, 4). No pair in ? sums up to 10.
public class TwoSumQuery {
public static int[] twoSumQuery(int[] A, int[] Q)
{
//Replace this line with your
return statement
return null;
}
}
In: Computer Science
In: Computer Science
Q.333 The Endot Manufacturing Company, a manufacturer and wholesaler of widgets, has provided you with the following financial information. The Company has asked you to make an analysis of the firm’s financial condition. In addition to the information given below, you have been informed that the firm has no lease payments but has principal payments of $2 million per year on its Long-term debt. Endot uses a 365-day year in preparing its ratios. Endot has 5,000,000 common shares outstanding. Endot’s financial statements are as follows:
Balance Sheet as of December 31, 2014 (Millions of Dollars)
Cash
45
Accounts Payable
45
Marketable Securities
33
Notes Payable
45
Accounts Receivable
66
Other Current Liabilities
21
Inventory
159
Total Current Liabilities
111
Total Current Assets
303
Total Long Term Liabilities
24
Total Liabilities
135
Gross Fixed Assets
225
Less Depreciation
78
Common Stock
114
Net Fixed Assets
147
Retained Earnings
201
Total Shareholder Equity
315
Total Assets
450
Total Liabilities and Equity
450
Statement of Income and Expenses for Year Ended December 31, 2014 (Millions of Dollars)
Net Sales
795.0
Costs of Goods Sold
660.0
Gross Profit
135.0
Fixed Expense
73.5
EBITDA
61.5
Depreciation Expense
12.0
EBIT
49.5
Interest Expense
4.5
EBT
45.0
Taxes (40%)
18.0
Net Income
27.0
What was Endot's Quick (Acid Test) Ratio?
a. 0.37
b. 1.30
c. 1.73
d. 2.00
e. 2.73
Q 388 The Endot Manufacturing Company, a manufacturer and wholesaler of widgets, has provided you with the following financial information. The Company has asked you to make an analysis of the firm’s financial condition. In addition to the information given below, you have been informed that the firm has no lease payments but has principal payments of $2 million per year on its Long-term debt. Endot uses a 365-day year in preparing its ratios. Endot has 5,000,000 common shares outstanding. Endot’s financial statements are as follows:
Balance Sheet as of December 31, 2014 (Millions of Dollars)
Cash
45
Accounts Payable
45
Marketable Securities
33
Notes Payable
45
Accounts Receivable
66
Other Current Liabilities
21
Inventory
159
Total Current Liabilities
111
Total Current Assets
303
Total Long Term Liabilities
24
Total Liabilities
135
Gross Fixed Assets
225
Less Depreciation
78
Common Stock
114
Net Fixed Assets
147
Retained Earnings
201
Total Shareholder Equity
315
Total Assets
450
Total Liabilities and Equity
450
Statement of Income and Expenses for Year Ended December 31, 2014 (Millions of Dollars)
Net Sales
795.0
Costs of Goods Sold
660.0
Gross Profit
135.0
Fixed Expense
73.5
EBITDA
61.5
Depreciation Expense
12.0
EBIT
49.5
Interest Expense
4.5
EBT
45.0
Taxes (40%)
18.0
Net Income
27.0
If Endot's common stock is currently selling for $104.49 per share, what is Endot's Price to Earnings Ratio?
a.
580.5X
b.
104.49X
c.
41.8X
d.
19.35X
e.
It is impossible to determine the P/E ratio from the information given
In: Finance