Ross Co., Westerfield, Inc., and Jordan Company announced a new agreement to market their respective products in China on July 18, February 12, and October 7, respectively. Given the information below, calculate the cumulative abnormal return (CAR) for these stocks as a group. Assume all companies have an expected return equal to the market return. (A negative value should be indicated by a minus sign. Leave no cells blank - be certain to enter "0" wherever required. Do not round intermediate calculations. Round your answers to 1 decimal place.)
| Ross Co. | Westerfield, Inc. | Jordan Company | ||||||||
| Date | Market Return |
Company Return |
Date | Market Return |
Company Return |
Date | Market Return |
Company Return |
||
| July 12 | −.1 | −.9 | Feb 8 | −.6 | −.9 | Oct 1 | .4 | .5 | ||
| July 13 | .2 | .3 | Feb 9 | −.7 | −.9 | Oct 2 | .3 | .5 | ||
| July 16 | .5 | .7 | Feb 10 | .5 | .6 | Oct 3 | .8 | 1.3 | ||
| July 17 | −.6 | −.2 | Feb 11 | .7 | 1.1 | Oct 6 | −.1 | −.8 | ||
| July 18 | −1.8 | 1.3 | Feb 12 | −.1 | .1 | Oct 7 | −2.3 | −.8 | ||
| July 19 | −.9 | −.5 | Feb 15 | 1.2 | 1.5 | Oct 8 | .2 | .4 | ||
| July 20 | −.9 | −1.1 | Feb 16 | .7 | .6 | Oct 9 | −.5 | −.5 | ||
| July 23 | .6 | .4 | Feb 17 | −.1 | .0 | Oct 10 | .1 | −.1 | ||
| July 24 | .2 | .0 | Feb 18 | .6 | .4 | Oct 13 | −.1 | −.6 | ||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
In: Finance
Use data below to complete
|
5 |
3 |
0 |
0 |
0 |
5 |
1 |
2 |
0 |
1 |
1 |
1 |
|
1 |
7 |
0 |
2 |
2 |
1 |
2 |
0 |
6 |
4 |
1 |
3 |
|
2 |
4 |
0 |
1 |
1 |
0 |
0 |
0 |
1 |
3 |
0 |
2 |
|
1 |
0 |
3 |
0 |
3 |
0 |
1 |
2 |
8 |
2 |
3 |
0 |
|
0 |
5 |
1 |
1 |
3 |
10 |
1 |
0 |
2 |
0 |
1 |
0 |
Table 1.18 Frequency of Number of Movies Viewed
|
Number of Movies |
Frequency |
Relative Frequency |
Cumulative Relative Frequency |
|
0–1 |
|||
|
2–3 |
|||
|
4–5 |
|||
|
6–7+ |
Table 1.19 Frequency of Number of Movies Viewed
Discussion Questions
In: Statistics and Probability
Let x, y ∈ Z. Prove that x ≡ y + 1 (mod 2) if and only if x ≡ y + 1 (mod 4) or x ≡ y + 3 (mod 4)
In: Advanced Math
Directions:
Using a vector of integers that you define.
Write a C++ program to run a menu driven program with the following choices:
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Make sure your program conforms to the following requirements:
1. Write a function called getValidAge that allows a user to enter in an integer and loops until a valid number that is >= 0 and < 120 is entered. It returns the valid age.
2. Write a function called displayAges that takes in a vector of integers as a parameter and displays the ages in the format in the sample run below.
3. Write a function called AddAge that takes in a vector of integers by reference as a parameter, asks the user to input a valid age, and adds it to the vector of integers .
4. Write a function called getAverageAge that takes in a vector of integers as a parameter, computes, and returns the average age.
5. Write a function called getYoungestAge that takes in a vector of integers as a parameter, computes, and returns the youngest age.
6. Write a function called getNumStudentsVote that takes in a vector of integers as a parameter, computes, and returns the number of ages in the vector that are >= 18. (15 points).
7. Write a function called RemoveStudentsLessThanSelectedAge that takes in a vector of integers as a parameter, asks the user for an age, creates a new vector of integers that only contains the ages in the parameter vector which are >= the age selected by the user and returns the new vector.
8. Add comments wherever necessary.
NOTE: You must take care of the case when the vector is empty and an operation is being performed on it. In such cases the program should display a 0 for the given result.
Sample Runs:
NOTE: not all possible runs are shown below.
Welcome to the students age in class program!
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..1
Student ages:
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..3
Average age = 0
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..4
Youngest age = 0
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..5
Number of students who can vote = 0
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..6
Please enter in the age...
5
Students removed
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..2
Please enter in the age...
4
Age added
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..2
Please enter in the age...
24
Age added
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..2
Please enter in the age...
18
Age added
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..2
Please enter in the age...
12
Age added
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..1
Student ages:
4 24 18 12
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..3
Average age = 14
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..4
Youngest age = 4
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..5
Number of students who can vote = 2
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..6
Please enter in the age...
15
Students removed
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..1
Student ages:
24 18
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..3
Average age = 21
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..4
Youngest age = 18
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..5
Number of students who can vote = 2
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..-8
Select an option (1..7)..8
Select an option (1..7)..1
Student ages:
24 18
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..2
Please enter in the age...
-8
Please enter in a valid age (1-120) ...
130
Please enter in a valid age (1-120) ...
55
Age added
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..1
Student ages:
24 18 55
1) Display the ages
2) Add an age
3) Display the average age
4) Display the youngest age
5) Display the number of students who can vote
6) Remove all students less than a given age
7) Quit
Select an option (1..7)..7
Process finished with exit code 0
General Requirements:
1. Please make sure that you're conforming to specifications (program name, print statements, expected inputs and outputs etc.). Not doing so will result in a loss of points. This is especially important for prompts.
2. If we have listed a specification and allocated point for it, you will lose points if that particular item is missing from your code, even if it is trivial.
3. No global variables (variables outside of main() ) unless they are constants.
4. All input and output must be done with streams, using the library iostream
5. You may only use the iostream, iomanip, and vector libraries. Including unnecessary libraries will result in a loss of points.
6. NO C style printing is permitted. (Aka, don't use printf). Use cout if you need to print to the screen.
7. When you write source code, it should be readable and well-documented (comments).
In: Computer Science
Consider the following daily time series representing the number
of clients visiting the Small Business Development Center over the
previous 10 days.
| Day | Clients |
|---|---|
| 1 | 1 |
| 2 | 2 |
| 3 | 1 |
| 4 | 3 |
| 5 | 0 |
| 6 | 2 |
| 7 | 1 |
| 8 | 1 |
| 9 | 2 |
| 10 | 3 |
Step 1 of 2:
What is the Simple Exponential Smoothing Forecast for day 11 (t
= 11) assuming that the smoothing constant, alpha = 0.35?
Round to 2 decimal places.
Consider the following daily time series representing the number
of clients visiting the Small Business Development Center over the
previous 10 days.
| Day | Clients |
|---|---|
| 1 | 1 |
| 2 | 2 |
| 3 | 1 |
| 4 | 3 |
| 5 | 0 |
| 6 | 2 |
| 7 | 1 |
| 8 | 1 |
| 9 | 2 |
| 10 | 3 |
Step 2 of 2:
What is the Simple Exponential Smoothing Forecast for day 11 (t
= 11) assuming that the smoothing constant, alpha = 0.6?
Round to 2 decimal places.
In: Accounting
The market consists of 2 firms. The firms produce the same product. Firm 1 with $1 per-unit cost (C1(q1)=1q1 ). Firm 2 with $1 per-unit cost (C2(q2)=1q2 ). Firm 1 can set its price to 2 or 3 or 4 $. Firm 2 can set its price to 2 or 3 or 4 $. The industry's demand function is Q= 10 – P (P-price, Q- total quantities). The firms choose their quantities simultaneously.
1a) Find Firm 1 optimal price P1=?
1b) Find Firm 2 optimal optimal price p2=?.
1c) Determine the equilibrium quantity? (Q=?)
1d) Firm 1 will earn? (pi1=?)
1e) Firm 2 will earn? (pi2=?)
In: Economics
The market consists of 2 firms. The firms produce the same product. Firm 1 with $1 per-unit cost (C1(q1)=1q1). Firm 2 with $1 per-unit cost (C2(q2)=1q2). Firm 1 can produce 2 or 4 or 6 units. Firm 2 can produce 2 or 4 or 6 units. The industry's demand function is Q = 50 - P (P=price, Q=total quantities). The firms choose their quantities simultaneously.
1a) Find Firm 1's optimal production levels. q1=?
1b) Find Firm 2's optimal production levels. q2=?
1c) Determine the equilibrium price. p=?
1d) Firm 1 will earn how much?
1e) Firm 2 will earn how much?
In: Economics
Consider the data sheet below that tracks employee hours worked over four days:
Day 1 Day 2 Day 3 Day 4
Employee 1 5 8 6 2
Employee 2 2 0 8 6
Employee 3 6 4 9 5
Employee 4 7 8 8 4
Employee 5 3 6 2 8
Employee 6 9 5 1 7
Based on the above information, write a Java program that performs the following tasks:
Task 1) Recreate the matrix as a two-dimensional array by
hardcoding values (User input is not needed)
Task 2) Calculate and print the total number of hours worked across
all employees
Task 3) Find the employee who worked the most number of hours
(Hint: Total all of the columns in each row. Keep track of the
"largest" row and the employee associated to that row.
Task 4) Find the employee who worked the least number of hours
(Hint: Total all of the columns in each row. Keep track of the
"smallest" row and the employee associated to that row.
Example run:
The total number of hours worked across all employees: 129
The employee that worked the most number of hours was Employee 4
working 27 hours
The employee that worked the least number of hours was Employee 2
working 16 hours
Note: For output, use the JOptionPane class.
In: Computer Science
Potential Locations Areas Covered
A 1, 5
B 2, 3, 5, 6
C 1, 4
D 1, 2, 4, 6
E 4, 5
In: Statistics and Probability
A non-uniform b-spline curve knot vector is given as (-1, -1, -1, -1/2, 0, 0, 0, 1, 1, 1, 3/2, 2, 2, 3, 3, 3, 3). Show the equation diagrammatically and sketch the curve with their respective control polygons if the curve is cubic (degree 3, order 4).
In: Advanced Math