You are an assistant Human Resource Manager at Company X. You have had this job for two years, and you love it. You have a great opportunity to become the manager within the year as your immediate boss is nearing retirement. One day, the president of the company comes by your desk to ask you for “a favour”. He has just hired a “rock star” CEO and wants you to enroll her in the company benefits program right away and waive the required 6 months probationary period. He really wants to make a good impression with her and roll out the red carpet. The policy is that all employees must wait 6 months before enrolling in any company benefits program. You are well aware of the policy because when you were first hired, you needed new glasses and had to wait 6 months for coverage even though you had asked for a waiver. What do you do? Explain your decision using the four ethical decision-making criteria discussed in class and in your textbook.
In: Operations Management
A charge of 4.85 mC is placed at each corner of a square 0.100 m on a side.
a. Determine the magnitude of the force on each charge. (N)
b. Determine the direction of the force on each charge. Assume that the positive x-axis is directed to the right. (degrees above x-direction)
In: Physics
Java Program General Scenario: You are creating an interactive application that gets input from the keyboard and keeps track of a grocery store that a businessman runs. In order to develop this application, you will be using 2 interfaces, 1 abstract class, and 1 concrete class. You should use the interfaces and the abstract class to create the concrete class. Your application should have overridden toString() at appropriate places so that you could display the object state, i.e., the string representation of the objects that you create by simply using the following command: System.out.println(object). Follow the following instructions: Create 2 interfaces: Onion and Coke. Interface Onion contains only 1 abstract method: onionPrice() which does not return any data. It takes 1 double argument: onionPrice that represents the current price (per kilo) of onion. Interface Coke contains only 1 abstract method: cokePrice() which does not return any data. It takes 1 double argument: cokePrice that represents the current price (per bottle) of coke. Create an abstract class named Businsess. This class contains 1 instance variable, 1 constructor, and 1 abstract method. Instance variable: numEmp (that will take care of the number of employees in the business. An 1-argument constructor that will be called from its subclass to load 1 instance variable of this level during the creation of an object in its subclass. 1 abstract method: numEmployee(). This method does not take any arguments. When implemented in its subclass, it is supposed to return an integer that represents the number of employees in the business. In this abstract class Business, write necessary code to get the object state (i.e., the string representation) that will eventually be called from its concrete subclass. Create a concrete class named GroceryBusiness that makes use of both the interfaces: Onion and Coke that you created earlier. This concrete class also makes use of the abstract class Business that you also created earlier. a. This concrete class GroceryBusiness has 1 instance variable of its own, 1 constructor, and 1 concrete method of its own. Instance variable: groceryIncome (Use appropriate data type) that represents the current yearly income of the grocery business. Constructor: 1 constructor that constructs a GroceryBusiness object with all the its instance variables (numEmp and groceryIncome) supplied during the GroceryBusiness object creation. 1 concrete method of its own: yearEstablished() that does not return any data. It takes 1 integer argument (year) that represents the year the grocery business was established. This method displays the year the grocery business was established from within itself. Write all necessary code to make this class a concrete class. Write necessary code to get the complete string representation (i.e., the object state) of objects made from this class. [35 marks] Create a driver class named XXXMidTest (replace XXX by three letters of your name). This driver class would prompt the user to enter current number of employees in your grocery business. It would then ask how much you earn from the grocery business. It then uses these 2 user input to create a GroceryBusiness object. It would then display the string representation of the object you just created. Then it would ask for the year the grocery business was established.. It would display the year you just entered. It would then ask for the current price of onion per kilo. And finally it would ask for the current price of coke per bottle. It would then display the prices you just entered.
In: Computer Science
In: Computer Science
Question: In about 150 words, analyze how Social, Economic, Political and Technological factors might affect the food industry. Define each factor with example in context.
Food Industry
There’s no denying that the food industry is one of the strongest in the world after all, everyone needs to eat! Indeed, there are some interesting dynamics at play in this space which make it unclear just how profitable food businesses will continue to be.
Governments across the world have expansive regulatory frameworks for every aspect of the food industry. This includes the cleanliness of commercial kitchens, the standards for storing and transporting produce, and even the requirements for laborers in the food business. Without a doubt, this makes the food industry one of the most tightly regulated industries of all. On the plus side, this ensures that consumers aren’t exposed to poor quality nutrition, but the complexities of regulation certainly take away from the margins of the food business.
We’re seeing various types of automation more and more in the food industry. Perhaps the best example is the use of self-checkout screens at fast food venues such as McDonalds, but it’s not the only one! Just recently, social media platforms went crazy as viral footage of a hotel’s robot cooking up omelets began to spread. As we find more ways to use technology including robots in
In: Operations Management
Part I
A ball is thrown straight up from the top of a building that is
185ft high with an initial velocity of 64ft/s. The height of the
object can be modeled by the equation s(t) =
-16t 2 + 64t + 185.
In two or more complete sentences explain how to determine the
time(s) the ball is higher than the building in interval
notation.
Part II
In two or more complete sentences, describe the transformation(s) that take place on the parent function, f(x) = log(x), to achieve the graph of g(x) = log(-3x-6) - 2.
Part III
The parent function f(x) = log4x has been transformed by reflecting it over the x-axis, stretching it vertically by a factor of two and shifting it down five units. Which function is representative of this transformation?
A. g(x ) = log4(2x) - 5
B. g(x) = log4(-2x) + 5
C. g(x) = 2log4(x) + 5
D. g(x) = -2log4(x) - 5
In: Advanced Math
In: Physics
Write in C++
Print the following heading (should be in heading function)
Welcome to Reference parameters
2 ) ask the user for 2 numbers (should be in main)
3 ) Calculate the sum and product of the numbers using reference parameters (should be in getAnswer function)
4 ) Print the sum and product of the numbers in the following format: (should be in printmessage function)
Here is the function you need
Function name | Parameters | Return Type
heading | N/A | void
getAnswer | lnumber1, number2, sum, product | void
printmessage | sum, product | void
Sum: <sum>
Product: <product>
Example:
Enter a number: 5
Enter another number: 2
Sum: 7
Product: 10
In: Computer Science
Define Alternate dispute resolution procedure and explain how having such a procedure can be valuable to a company
In: Operations Management
A. Define and implement the class Alarm as follows: The class Alarm consists of two private member variables: description of type string and atime of type Time. The class Alarm also includes the following public member functions:
1. print to print out the alarm’s description and hour, minute, and second of the alarm time.
2. setDescription to accept a string argument and use it to set the description member variable.
3. setAtime to accept three integers (for hour, minute, and second) to set the atime member variable (alarm time).
4. getDescription to return the value of the description member variable.
5. getAtime to return the atime member as a Time object.
6. A default constructor that initializes the description to the string “None” and the alarm time to 00:00:00.
7. An overloaded constructor that accepts a string argument for the alarm description and three int arguments (as the hour, minute, and second) and use them to initialize the description and atime member variables of an Alarm object.
8. An overloaded constructor that accepts a string argument for the alarm description and a Time object and use them to initialize the description and atime member variables of an Alarm object.
9. An equals function to compare two Alarm objects’ values. Return true if both objects have the same values of the member variables. Otherwise, return false. B. In the function main, write statements to declare Alarm class objects and test your class implementation.
Your project is expected to contain five source files: Time.h, Time.cpp, Alarm.h, Alarm.cpp, Lab8.cpp.
In: Computer Science
This is all one question, thank you very much in advance!
You must evaluate a proposal to buy a new milling machine. The base price is $189,000, and shipping and installation costs would add another $16,000. The machine falls into the MACRS 3-year class, and it would be sold after 3 years for $103,950. The applicable depreciation rates are 33%, 45%, 15%, and 7%. The machine would require a $7,000 increase in net operating working capital (increased inventory less increased accounts payable). There would be no effect on revenues, but pretax labor costs would decline by $45,000 per year. The marginal tax rate is 35%, and the WACC is 13%. Also, the firm spent $5,000 last year investigating the feasibility of using the machine.
What is the initial investment outlay for the machine for
capital budgeting purposes, that is, what is the Year 0 project
cash flow? Round your answer to the nearest cent.
$
What are the project's annual cash flows during Years 1, 2, and 3? Round your answer to the nearest cent. Do not round your intermediate calculations.
Year 1 $
Year 2 $
Year 3 $
In: Finance
I need you to do both of the programs. Please specify which program is which!
Array Allocator:
Write a function that dynamically allocates an array of integers. The function should accept an integer argument indicating the number of elements to allocate. The function should return a pointer to the array. Call the function in a complete program.
Reverse Array:
Write a function that accepts an int array and the array’s size as arguments. The function should create a copy of the array, except that the element values should be reversed in the copy. The function should return a pointer to the new array. Demonstrate the function in a complete program.
In: Computer Science
Choose your favorite topic (Social Media, Positively but also point out negatives) and discuss your thoughts on how convergence has- in your opinion- positively or negatively impacted the medium you are writing about.
500 words
In: Psychology
Scientific research is disseminated differently than other types of information/journalism. Discuss the advantages of disadvantages of the current process. Also, see if you can find a website, podcast, radio show, blog, etc. that highlights recent scientific findings for the general public and share it
In: Psychology
National Business Machine Co. (NBM) has $2 million of extra cash after taxes have been paid. NBM has two choices to make use of this cash. One alternative is to invest the cash in financial assets. The resulting investment income will be paid out as a special dividend at the end of three years. In this case, the firm can invest in Treasury bills yielding 2 percent or a 4 percent preferred stock. IRS regulations allow the company to exclude from taxable income 70 percent of the dividends received from investing in another company’s stock. Another alternative is to pay out the cash now as dividends. This would allow the shareholders to invest on their own in Treasury bills with the same yield, or in preferred stock. The corporate tax rate is 36 percent. Assume the investor has a 32 percent personal income tax rate, which is applied to interest income and preferred stock dividends. The personal dividend tax rate is 15 percent on common stock dividends. |
Suppose the company reinvests the $2 million and pays a dividend in three years. |
What is the total aftertax cash flow to shareholders if the company invests in T-bills? (Enter your answer in dollars, not millions of dollars, e.g., 1,234,567. Do not round intermediate calculations and round your final answer to 2 decimal places, e.g., 32.16.) |
Value in three years | $ |
What is the total aftertax cash flow to shareholders if the company invests in preferred stock? (Enter your answer in dollars, not millions of dollars, e.g., 1,234,567. Do not round intermediate calculations and round your final answer to 2 decimal places, e.g., 32.16.) |
Value in three years | $ |
Suppose instead that the company pays a $2 million dividend now and the shareholder reinvests the dividend for three years. |
What is the total aftertax cash flow to shareholders if the shareholder invests in T-bills? (Enter your answer in dollars, not millions of dollars, e.g., 1,234,567. Do not round intermediate calculations and round your final answer to 2 decimal places, e.g., 32.16.) |
Value in three years | $ |
What is the total aftertax cash flow to shareholders if the shareholder invests in preferred stock? (Enter your answer in dollars, not millions of dollars, e.g., 1,234,567. Do not round intermediate calculations and round your final answer to 2 decimal places, e.g., 32.16.) |
Value in three years | $ |
In: Finance