Models with Categorical Variables
The Gender dummy variable was created using Male as the base.
| Profit | Income | Family | Gender |
| 157 | 45000 | 1 | 0 |
| -181 | 55000 | 2 | 0 |
| -253 | 45800 | 4 | 0 |
| 158 | 38000 | 3 | 0 |
| 75 | 75000 | 4 | 0 |
| 202 | 99750 | 4 | 0 |
| -451 | 28000 | 1 | 0 |
| 146 | 39000 | 2 | 0 |
| 89 | 54350 | 1 | 0 |
| -357 | 32500 | 1 | 0 |
| 522 | 36750 | 1 | 1 |
| 78 | 42500 | 3 | 1 |
| 5 | 34250 | 2 | 1 |
| -177 | 36750 | 3 | 1 |
| 123 | 24500 | 2 | 1 |
| 251 | 27500 | 1 | 1 |
| -56 | 18000 | 1 | 1 |
| 453 | 24500 | 1 | 1 |
| 288 | 88750 | 1 | 1 |
| -104 | 19750 | 2 | 1 |
In: Statistics and Probability
The hydrolysis of 1-chloro-1-methyl cylcoheptane in 80% ethanol follows a first order rate equation. The values of the specific reaction rate constants are:
| temp/C | 0 | 25 | 35 | 45 |
| k/s-1 | 1.06x10-5 | 3.19x10-4 | 9.86x10-4 | 2.92x10-3 |
1. Plot Ln(k) against 1/T
2. Calculate the activation energy
3. Calculate the pre-exponential factor
In: Chemistry
Consider the following spot rates.
| Maturity (years) | Zero rate (%) |
| 1 | 3 |
| 2 | 4 |
| 3 | 4.6 |
| 4 | 5 |
What is the one-year forward rate for year two?
In: Finance
Calculate the standard deviation of the following returns.
Year Return
1 0.18
2 0
3 -0.05
4 0.2
5 -0.17
Enter the answer with 4 decimals, e.g. 0.1234
In: Finance
| 1. A company has three new project ideas that are all expected to last 4 years. Unfortunately due to a resource constraint they can only pursue 2 of these projects. Assume the development costs for all projects are paid up front (i.e. prior to the start of the project). The specific financial projections for the three projects are: | |||||
| · Project 1 – Development cost would be $50,000. Projected revenues from the project are $50,000 in the first year with an expected annual growth of 10% each of the next 3 years. | |||||
| · Project 2 - Development cost would be $100,000. Projected revenues from the project are expected to be a constant $72,000 for all 4 years. | |||||
| · Product 3 - Development cost would be $150,000. Projected revenues are $100,000 in the first year with an expected decline of 10% each of the next 3 years. | |||||
| If the company uses a 7.5% hurdle rate and estimates inflation at 1% annually what is each project’ s NPV? (In addition to the total NPV for each project You MUST show your calculations & annual NPV values for each project) |
| Project 1 | |
| YEAR | NetFlow |
| c0 | -$50,000.00 |
| c1 | $50,000.00 |
| c2 | $55,000.00 |
| c3 | $60,500.00 |
| c4 | $66,550.00 |
| Project 2 | |
| YEAR | NetFlow |
| year 0 | -$100,000.00 |
| year 1 | $72,000.00 |
| year 2 | $72,000.00 |
| Year 3 | $72,000.00 |
| Year 4 | $72,000.00 |
| Project 3 | |
| YEAR | NetFlow |
| year 0 | -150,000.00 |
| year 1 | 100,000.00 |
| year 2 | 90,000.00 |
| Year 3 | 81,000.00 |
| Year 4 | 72,900.00 |
In: Finance
. Which of the following are redox reactions?
I: 2 HF(aq) + Ca(OH)2(aq) → CaF2(s) + 2 H2O(l)
II: 2 CH3OH(g) + 3 O2(g) → 2 CO2(g) + 4 H2O(l)
III: 2 HNO3(aq) + NO(g) → 3 NO2(g) + H2O(l)
(1) Only I (2) Only II (3) I and III (4) II and III (5) I, II, and III
In: Chemistry
Upper Division of Lower Company acquired an asset with a cost of $550,000 and a four-year life. The cash flows from the asset, considering the effects of inflation, were scheduled as follows:
The cost of the asset is expected to increase at a rate of 10 percent per year, compounded each year. Performance measures are based on beginning-of-year gross book values for the investment base. Ignore taxes.
Year Cash Flow
1 $200,000
2 $245,000
3 $280,000
4 $305,000
Required:
a. What is the ROI for each year of the asset's life, using a historical cost approach? (Enter your answers as a percentage rounded to 1 decimal place (i.e., 32.1).)
ROI
Year
1 _____ %
2 _____ %
3 _____ %
4 _____ %
b. What is the ROI for each year of the asset's life if both the investment base and depreciation are determined by the current cost of the asset at the start of each year? (Enter your answers as a percentage rounded to 1 decimal place (i.e., 32.1).)
ROI
Year
1 _____ %
2 _____ %
3 _____ %
4 _____ %
In: Accounting
Given the root C++ code:
void sort()
{
const int N = 10;
int x[N];
for(int i = 0; i < N; i++)
{
x[i] = 1 + gRandom-> Rndm() *
10;
cout<<x[i]<<" ";
}
cout<<endl;
int t;
for(int i = 0; i < N; i++)
{
for(int j = i+1; j < N; j++)
{
if(x[j] < x[i])
{
int t =
x[i];
x[i] =
x[j];
x[j] = t;
}
}
}
cout << endl;
for(int i = 0; i < N; i++)
{
cout << x[i] <<"
";
}
cout << endl;
}
Given the order of numbers (10, 9, 8, 7, 6, 5, 4, 3, 2, 1)
Why does the program sort into (1, 2, 3, 4, 5, 6, 7, 8, 9, 10)
and not into (9, 8, 7, 6, 5, 4, 3, 2, 1, 10)?
Please explain in detail.
In: Computer Science
XYZ stock price and dividend history are as follows: Year Beginning-of-Year Price Dividend Paid at Year-End 2010 $ 140 $ 4 2011 $ 159 $ 4 2012 $ 132 $ 4 2013 $ 137 $ 4 An investor buys five shares of XYZ at the beginning of 2010, buys another three shares at the beginning of 2011, sells one share at the beginning of 2012, and sells all seven remaining shares at the beginning of 2013. a. What are the arithmetic and geometric average time-weighted rates of return for the investor? (Do not round intermediate calculations. Round your answers to 2 decimal places.) Arithmetic mean 2.93 % Geometric mean 2.08 % b-1. Prepare a chart of cash flows for the four dates corresponding to the turns of the year for January 1, 2010, to January 1, 2013. (Negative amounts should be indicated by a minus sign.) Date Cash Flow 1/1/2010 $ -700 1/1/2011 -457 1/1/2012 164 1/1/2013 987 b-2. What is the dollar-weighted rate of return? (Hint: If your calculator cannot calculate internal rate of return, you will have to use a spreadsheet or trial and error.) (Negative value should be indicated by a minus sign. Round your answer to 4 decimal places.) Rate of return %
In: Finance
QUESTION 1
|
A. |
3 |
|
|
B. |
2 |
|
|
C. |
4 |
|
|
D. |
1 |
10 points
QUESTION 2
|
A. |
False |
|
|
B. |
True |
10 points
QUESTION 3
|
A. |
1 |
|
|
B. |
2 |
|
|
C. |
3 |
|
|
D. |
Depend on the number of variables |
10 points
QUESTION 4
|
A. |
(x, y) = (0, 0) |
|
|
B. |
(x, y) = (1,1) |
|
|
C. |
(x, y) = (0, 1) |
|
|
D. |
(x, y ) = (1, 0) |
10 points
QUESTION 5
|
A. |
4 (correct) |
|
|
B. |
2 |
|
|
C. |
1 |
|
|
D. |
3 |
10 points
QUESTION 6
|
A. |
Power of 2 |
|
|
B. |
Even numbers |
|
|
C. |
Any number as long as it simplifies the given Boolean function |
|
|
D. |
All of these |
10 points
QUESTION 7
|
A. |
1 |
|
|
B. |
2 |
|
|
C. |
3 |
|
|
D. |
4 |
10 points
QUESTION 8
|
A. |
all of the variables exactly once |
|
|
B. |
minimum presentation of a Boolean function |
|
|
C. |
minimum term of Boolean operation |
|
|
D. |
only variables with value of “1” |
10 points
QUESTION 9
|
A. |
False |
|
|
B. |
True |
10 points
QUESTION 10
|
A. |
False |
|
|
B. |
True |
In: Computer Science