In the United States, participation in unions has steadily declined in the private sector but in the public sector, it has increased. In this unit's discussion boards, comment on the reasons for this.
What might get you to consider joining a union if given the choice? What conditions would have to exist and why might you become interested?
In: Operations Management
Using the stock prices in Problem 3, calculate the exponential three-month moving average for both stocks where two-thirds of the average weight is placed on the most recent price.
Amazon | |
$169.64 | $600.36 |
$173.29 | $613.40 |
$180.13 | $586.76 |
$195.81 | $544.10 |
$196.69 | $529.02 |
$204.49 | $506.38 |
$222.52 | $603.69 |
$215.23 | $540.96 |
$216.23 | $515.04 |
$213.51 | $592.64 |
$192.29 | $599.39 |
$173.10 | $645.90 |
In: Finance
Suppose you are going to receive $13,600 per year for five years. The appropriate interest rate is 8.5 percent. a-1 What is the present value of the payments if they are in the form of an ordinary annuity? (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) Present value $ a-2 What is the present value if the payments are an annuity due? (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) Present value $ b-1 Suppose you plan to invest the payments for five years. What is the future value if the payments are an ordinary annuity? (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) Future value $ b-2 Suppose you plan to invest the payments for five years. What is the future value if the payments are an annuity due? (Do not round intermediate calculations and round your answer to 2 decimal places, e.g., 32.16.) Future value $
In: Finance
1. Describe how to protect and use corporate data – employees, customers, suppliers, and business partners.
2. Define privacy in common sense.
In: Operations Management
essay of 300-350 words (a five-paragraph essay), answer the following prompt using sepcific details and clear examples.
What qualities make a person a good parent or guardian?
In: Psychology
This is an intro to java question. Please post with pseudocode and java code.
Problem should be completed using repetition statements like
while and selection statements.
Geometry (10 points) Make API (API design) Java is an extensible
language, which means you can expand the programming language with
new functionality by adding new classes. You are tasked to
implement a Geometry class for Java that includes the following API
(Application Programming Interface): Geometry Method API: Modifier
and Type Method and Description static double
getAreaRectangle(double width, double length) Returns the area of a
rectangle, area = length * width static double getAreaCircle(double
radius) Returns the area of a circle, area = ?(radius 2 ) static
double getAreaTriangle(double base, double height) Returns the area
of a triangle, area = ½(base * height) static double
getPerimeterRectangle(double width, double length) Returns the
perimeter of a Rectangle, perimeter = 2(length + width) static
double getPerimeterCircle(double radius) Returns the perimeter of a
Circle, perimeter = 2?(radius) static double
getPerimeterTriangle(double side1, double side2, double side3)
Returns the perimeter of a triangle, perimeter = s1 + s2 + s3 Facts
● Java Math class contains an approximation for PI, i.e. Math.PI ●
Your Geometry class implementation should not have a main method. ●
NO Scanner for input & NO System.out for output! Input The
Geometry class will be accessed by an external Java Application
within Autolab. This Java app will send data in as arguments into
each of the methods parameters. Output The Geometry class should
return the correct data calculations back to the invoking client
code
Sample Method Calls
getAreaRectangle(1,1);
getAreaCircle(1);
getAreaTriangle(1,1);
getPerimeterRectangle(1,1);
getPerimeterCircle(1);
getPerimeterTriangle(1,1,1);
Sample Method Returns
1.0
3.141592653589793
0.5
4.0
6.283185307179586
3.0
In: Computer Science
Dividends Per Share
Seventy-Two Inc., a developer of radiology equipment, has stock outstanding as follows: 80,700 shares of cumulative preferred 3% stock, $15 par, and 400,000 shares of $24 par common. During its first four years of operations, the following amounts were distributed as dividends: first year, $57,000 ; second year, $77,200 ; third year, $80,900 ; fourth year, $100,600 .
Calculate the dividends per share on each class of stock for each of the four years. Round all answers to two decimal places. If no dividends are paid in a given year, enter "0".
1st Year | 2nd Year | 3rd Year | 4th Year | |
Preferred stock (dividends per share) | $ | $ | $ | $ |
Common stock (dividends per share) | $ | $ | $ | $ |
In: Accounting
Develop a business case for using blockchain for asset and wealth management
In: Finance
In Java language. Write a brief program that writes your name to a file in text format and then reads it back. Use the PrintWriter and Scanner classes.
In: Computer Science
A spherical steel ball bearing has a diameter of 2.540 cm at 29.00°C. (Assume the coefficient of linear expansion for steel is 11 ✕ 10−6 (°C)−1. )
(a) What is its diameter when its temperature is raised to 96.0°C? (Give your answer to at least four significant figures.) cm
(b) What temperature change is required to increase its volume by 0.800%?
In: Physics
You are required to write an interactive program that prompts the user for ten (10) real numbers and performs the following tasks:
Program requirements:
- The program must utilize a class, an object and all the necessary functions to perform the above tasks.
- The program must be fully documented.
- You must submit a hard copy of the source and a properly labeled output.
- You should submit a digital copy of source code.
- Test your program for different values using real numbers.
In: Computer Science
A state is divided into R*C cities.The government has launched an initiative to find the cities which are dominated by coders. Each city may or may not have coders residing in it. If the city is dominated by coders, it is marked with 1 else it is marked with 0. Two cities are termed as connected cities if they both are dominated by coders and can be reached by moving vertically, horizontally, or diagonally.
Example:
The given is the state with 3*3 cities and their dominance
representation.
City[1, 1] is directly connected to City[1, 2].
City[1, 2] is directly connected to City[1, 1], City[1, 3] and
City[2, 3].
City[1, 3] is directly connected to City[1, 2] and City[2,
3].
City[2, 3] is directly connected to City[1, 2] and City[1,
3].
City[3, 1] is not connected to any of the other coder dominant
cities.
One or more coder dominant connected cities form the Coding belt.
In a belt, there may be coder dominant cities which are not
directly connected but can be reached by moving through other
dominant cities. It is possible that there are multiple coding
belts in the state.
Example:
The given is the state with 3*3 cities and their dominance
representation.
For the given example, there are two coding belts. C1 represents
Coding Belt 1 and C2 represents Coding Belt 2.
The government wants to find the number of coder dominant cities in
the largest coding belt.
The government will give you the credits in the initiative. Can you
help the government?
Note: For the given example, there are 4 coder dominant cities in
the largest coding belt.
Input Format
The first line of input consists of two space-separated integers,
number of rows, R, and number of columns, C.
Next R lines each consist of C space-separated integers.
Constraints
1<= R, C <=10
Output Format
Print the number of coder dominant cities in the largest Coding
belt.
Sample TestCase 1
Input
5 51 1 1 0 00 1 1 0 00 0 0 0 11 0 0 1 11 1 0 0 1
Output
5
Explanation
There are three belts in the given 5*5 cities.
Coding Belt 1 (C1): Number of Coder Dominant Cities = 5
Coding Belt 2 (C2): Number of Coder Dominant Cities = 4
Coding Belt 3 (C3): Number of Coder Dominant Cities = 3
In: Computer Science
Write a program in Java Using object Orientation Design to determine the status of Mini Van Sliding Doors. A logical circuit receives a different binary code to allow opening different doors. The doors can be opened by a dashboard switch, inside or outside handle. The inside handle will not open the door if the child safety lock is on or the master lock is on. The gear shift must be in the park to open the door.
** MUST USE constructors and methods. The methods should be instantiated by an object. Use simple main. The first bit Stream must be entered by users. The program needs to be interactive
Hints & Suggestions
park
door1
door2
dashboardSwitch
inHandle
outHandle
safteyLock
p | d1 | d2 | dw | inh | outh | sLock | desc |
---|---|---|---|---|---|---|---|
1 | 1 | 1 | 1 | 1 | 1 | 0 | Saftey Lock Off, door 1 & 2 open |
1 | 1 | 0 | 1 | 1 | 1 | 0 | |
1 | 0 | 1 | 1 | 1 | 1 | 0 | |
0 | 0 | 0 | 0 | 0 | 0 | 0 | Car not parked, no door works |
1 | 0 | 0 | 0 | 0 | 1 | 1 | Saftey lock on, door only opens from outside |
In: Computer Science
1. Implement the union set function using the prototype.
2. Implement the intersection set function using the prototype.
3. Implement the set difference function using the prototype.
4. Implement the subset function using the prototype.
In: Computer Science
For this assignment you will be creating a basic Hotel Reservation System. The program must meet the following guidelines:
Make sure you are using Variables, Looping, and decision statements!
In: Computer Science