Answer:
Darwin and Compuserve, Inc.
1. d. if Darwin was unable to perform the essential functions of his job
e. if Darwin had another job offer elsewhere
2. b. Title VII
3. a. No, because Darwin was treated less favorably than younger employees based solely on his age.
Explanation:
Title VII of the Civil Rights Act of 1964 is a federal law that protects employees against discrimination based on certain specified characteristics: race, color, national origin, sex, and religion. Under Title VII, an employer may not discriminate with regard to any term, condition, or privilege of employment.
Federal employment laws prohibit discrimination of persons who are over 40 years.
Answer:
Explanation:
CODE:
import java.io.*;
class Test
{
public static void main(String[] args) {
File file = new File("input.txt");
try{
BufferedReader b = new BufferedReader(new FileReader(file));
String line;
while ((line = b.readLine()) != null)
{
for(int i=0;i<line.length();i++)
{
char c=line.charAt(i);
if((c>='A' && c<='Z') || (c>='a' && c<='z') || (c>='0' && c<='9')) //check if char is digit or alphabet
System.out.print(c);
else
System.out.println("\n"+c);
}
}
}
catch(Exception e)
{
System.out.println(e);
}
}
}
Answer: 161.1%
Explanation:
Given that,
Direct labor costs for Chester = $32,680
Labor costs could have been $20,000 higher
Productivity index shows the ratio between the labor costs with improvements and labor costs without improvement in production.
Productivity Index =
=
= 161.1%
The productivity index for Chester, which measures the savings in labor costs due to productivity improvements, is approximately 62.06%. This suggests that, without the investments in training, Chester's labor costs would have been about 38% higher.
In order to calculate the productivity index for Chester, we need to understand that the productivity index essentially measures the savings in labor costs resulting from production improvements, expressed as a percentage. In this particular case, Chester was able to save $20,000 in labor costs due to investments in productivity-enhancing training.
The original direct labor costs for Chester was $32,680. Had Chester not made any productivity improvements, the labor costs would have been $32,680 plus an additional $20,000, for a total of $52,680. Therefore, the productivity index is calculated by dividing the original labor cost by what the labor cost would have been without the productivity improvements, and multiplying by 100, as follows: ($32,680 / $52,680) * 100. This equation gives a productivity index of approximately 62.06%. This means that Chester's labor costs would have been approximately 38% higher without the productivity improvements.
#SPJ11
What is the most Mira Mesa can pay for the synthetic material per unit (refrigerator) and meet its profitability goal?
Answer:
$126
Explanation:
We can calculate the amount Mira can pay for the synthetic material per unit (refrigerator) and meet its profitability goal by deducting the estimated profit and then all the cost from the selling price per unit.
Selling price per unit $260
Less
estimated return (260x30%) = ($78)
Labor costs ($32)
Overhead costs ($24)
Material $126
Amount Mira can pay for Synthetic material per unit is $126
b. Financial statements are frequently the basis used for performance evaluations.
c. Historical information has no value when predicting the future.
d. Potential lenders place little value on financial statement information.
e. Reviewing financial information over time has very limited value.
Answer:
b. Financial statements are frequently the basis used for performance evaluations.
Explanation:
The financial statements are the accounting reports of an organization, through these documents it is possible to analyze what is the financial situation of a company in the internal and external environment, what are its greatest strengths and weaknesses.
They are instruments for evaluating organizational performance because they provide essential information about the general accounting situation of a company, which ensures greater reliability for a manager to make a decision directed to correct a problem or strategic implementation to achieve a certain result. It also allows stakeholders to analyze essential data and information when deciding to invest or do business with a particular company.
Answer:
$18,800
Explanation:
The amortization expense can be calculated by dividing the cost of copyright to purchase by the estimated useful life and then multiplied by the number of months covered until May 1, 2017.
Amortization expense = Cost to purchase / Estimated useful life) x 8/12 Amortization expense = ($112,800 / 4 years) * 8/12
Amortization expense = $18,800
As the copyright is purchased on may 1 it will cover 8 months till 31 december 2017
The location to add notes depends on the context. In software like Microsoft Word, notes can be added under 'New Comment' in the 'Review' tab. Similarly, in a PowerPoint presentation, notes can be added in the 'Notes' pane, and in many email clients and physical notebooks or sticky-notes.
There are several places where you can add notes depending on the context. If you are using a computer software like Microsoft Word, notes can be added in the 'Review' tab under 'New Comment'. Similarly, in a PowerPoint presentation, you can add notes in the 'Notes' pane at the bottom of each slide.
In many email clients, you can also add notes to emails or contacts. In a physical context, notes can be added in notebooks or on sticky-notes. Thus, the specific location to add notes will depend largely on the platform or context in which you are working.
#SPJ2