Questions
What are the six planning tools and techniques? Using an example from your experience (as a...

What are the six planning tools and techniques? Using an example from your experience (as a student or at work), describe how you could use one of the techniques or tools to improve planning in your future. You may choose to apply your response to a specific goal in answering this question.

In: Operations Management

Explain in your own words what the overall catalytic efficiency really compares and what it tells...

Explain in your own words what the overall catalytic efficiency really compares and what it tells us about our enzyme

In: Chemistry

Considering what you know about brain plasticity, should the government provide early childhood education for all...

  • Considering what you know about brain plasticity, should the government provide early childhood education for all children? Why or why not?

In: Psychology

Although studies continue to show smoking leads to significant health problems, 20% of adults in the...

Although studies continue to show smoking leads to significant health problems, 20% of adults in the United States smoke. Consider a group of 280 adults.

If required, round your answers to four decimal places.

a. What is the expected number of adults who smoke?

b. What is the probability that fewer than 40 smoke?

c. What is the probability that from 35 to 70 (inclusive) smoke?

d. What is the probability that 70 or more smoke?

In: Math

JAVA programming language Modify the following code. Make changes so that Movies can be sorted by...

JAVA programming language

Modify the following code. Make changes so that Movies can be sorted by title

-----------------------------------------------------------------

package Model;
import java.time.Duration;
import java.time.LocalDate;
import java.util.ArrayList;
import java.util.List;
// TODO - Modify the movie class so that Java knows how to compare two Movies for sorting by title
public class Movie extends DataStoreObj
{
private String title;
private String description;
private LocalDate releaseDate;
private Duration runningTime;
private Rating rating;
private List<Genre> genres = new ArrayList<>();
private List<Actor> actors = new ArrayList<>();
// TODO: Add list of reviews
private List<Review> reviews = new ArrayList<>();
public Movie(String title, String description, Rating rating, String releaseDate, int runningTimeMinutes) {
this(null, title, description, rating, releaseDate, runningTimeMinutes);
}
public Movie(Long id, String title, String description, Rating rating, String releaseDate, int runningTimeMinutes) {
super(id);
this.title = title;
this.description = description;
this.rating = rating;
this.releaseDate = LocalDate.parse(releaseDate);
// https://stackoverflow.com/a/41800301/673393
this.runningTime = Duration.ofMinutes(runningTimeMinutes);
}
public Duration getRunningTime() {
return runningTime;
}
public String getTitle() {
return title;
}
public void addGenre(Genre genre) {
genres.add(genre);
}
public void addActor(long actorId) {
Actor foundActor = Datastore.getActorById(actorId);
actors.add(foundActor);
}
public List<Actor> getActors() {
return actors;
}
public void addReview(Review review) {
// TODO: Write code to add the review to the list
reviews.add(review);
}
public String toString() {
int runningTimeMinutes = (int) this.getRunningTime().getSeconds() / 60;
return String.format("%s (%s, %s) %s {%s min}", this.title, this.rating, this.releaseDate.getYear(), genres, runningTimeMinutes);
}
// TODO - You'll need a new method here to tell Java how to compare two movies by title
public List<Review> getReviews() {
return reviews;
}

}

In: Computer Science

How does an understanding of management and organizational behavior lead to organizational effectiveness and efficiency? Why...

How does an understanding of management and organizational behavior lead to organizational effectiveness and efficiency? Why is the study of management theories (classical, behavioral and modern management) relevant today?

In: Operations Management

Who are starbucks Competitors and why are they a threat?

Who are starbucks Competitors and why are they a threat?

In: Operations Management

For each condition listed below, indicate whether it will increase or decrease the likely success of...

For each condition listed below, indicate whether it will increase or decrease the likely success of a trade embargo. Briefly explain. (2 points each)

i. The group of countries imposing the embargo account for a small share of the targeted country’s trade.

ii. The targeted country is a major importer of goods from the imposing countries.

In: Economics

According to Crocker & Major (1989), one possible consequence of treating a stigmatizing condition is to...

According to Crocker & Major (1989), one possible consequence of treating a stigmatizing condition is to improved social interactions of the stigmatized individual. How would you evaluate the ethical (moral) implications or consequences of this treatment?

In: Psychology

12. Suppose that a firm’s production function is given by Q = K0.75L0.25, the wage rate...

12. Suppose that a firm’s production function is given by Q = K0.75L0.25, the wage rate is w = $20 per unit of labor and the rental rate is r = $100 per unit of capital.

  1. What is the marginal rate of technical substitution between labor and capital, ????'( (where labor is graphed on the x-axis and capital is on the y-axis)?

  2. If the firm produces 1000 units of output by using 1000 units of labor and 1000 units of capital, how much is the firm spending in total? Is it minimizing its cost of producing 1000 units? If not, explain in general terms how the firm should adjust.

  3. What is the cost-minimizing input combination for the firm to produce 1000 units? What is the cost of this input bundle? (Round your answer to two decimal places.)

  4. Suppose the firm wants to produce 1000 units of output, and its capital level is fixed at K = 500 in the short run. How many units of L should the firm use? What is the firm’s total cost of producing the 1000 units of output?

In: Economics

“It takes 20 years to build a reputation and few minutes of cyber-incident to ruin it.”...

“It takes 20 years to build a reputation and few minutes of cyber-incident to ruin it.” Stéphane Nappo, Chief Information Security Officer, Société Générale Discuss the importance of attention to Cyber Security in all areas of the company, including the weakest link (the human), What is the role of top management in preparing a company for a Cyber attack? Use Siemens as an example

In: Operations Management

One of New England​ Air's top competitive priorities is​ on-time arrivals. Quality VP Clair Bond decided...

One of New England​ Air's top competitive priorities is​ on-time arrivals. Quality VP Clair Bond decided to personally monitor New England​ Air's performance. Each week for the past 30​ weeks, Bond checked a random sample of 100 flight arrivals for​ on-time performance.

Sample

​(week)

Late

Flights

Sample

​(week)

Late

Flights

1

3

16

2

2

2

17

1

3

11

18

13

4

11

19

2

5

2

20

1

6

1

21

3

7

8

22

19

8

6

23

3

9

11

24

1

10

0

25

3

11

2

26

2

12

3

27

0

13

2

28

1

14

2

29

4

15

7

30

4

a)   Using a 95% confidence level, plot the overall percentage of late flights ( p ) and the upper and lower control limits on a control chart.

b)   Assume that the airline industry’s upper and lower control limits for flights that are not on time are .1000 and .0400, respectively. Draw them on your control chart.

c)   Plot the percentage of late flights in each sample. Do all samples fall within New England Air’s control limits? When one falls out-side the control limits, what should be done?

d)   What can Clair Bond report about the quality of service?

(Please Screen shot the Excel if its in excel

In: Operations Management

Create a C++ or Java program codes for Login Attendance applying the queue principle that will...

Create a C++ or Java program codes for Login Attendance applying the queue principle that will select students from the last attendance login to answer a question.

NOTE: Program execution should include deletion and insertion of attendance information/element

In: Computer Science

write a program that takes the input value from the user and calculate the sum from...

  • write a program that takes the input value from the user and calculate the sum from that number to zero in MIPS

In: Computer Science

Comparing ABC and Plantwide Overhead Cost Assignments Wellington Chocolate Company uses activity-based costing (ABC). The controller...

  1. Comparing ABC and Plantwide Overhead Cost Assignments

    Wellington Chocolate Company uses activity-based costing (ABC). The controller identified two activities and their budgeted costs:

    Setting up equipment $270,000
    Other overheard $2,160,000

    Setting up equipment is based on setup hours, and other overhead is based on oven hours.
    Wellington produces two products, Fudge and Cookies. Information on each product is as follows:

    Fudge Cookies
    Units produced 8,000 445,000
    Setup hours 4,000 1,000
    Oven hours 1,800 12,600

    Required:

    Round your answers to the nearest whole dollar, unless otherwise directed.

    1. Calculate the activity rate for (a) setting up equipment and (b) other overhead.

    a. Setting up equipment $ per setup hour
    b. Other overhead $ per oven hour

    2. How much total overhead is assigned to Fudge using ABC?
    $

    3. What is the unit overhead assigned to Fudge using ABC? Round to the nearest cent.
    $per unit

    4. Now, ignoring the ABC results, calculate the plantwide overhead rate, based on oven hours. Round to the nearest cent.
    $ per oven hour

    5. How much total overhead is assigned to Fudge using the plantwide overhead rate?
    $

    6a. The difference in the total overhead assigned to Fudge is different under the ABC system and non–ABC system because  .

    6b. What is the difference in total overhead assigned to fudge under the two methods?

    $

In: Accounting