Questions
A simply supported beam of span "L" and uniform flexural rigidity EI, carries a point load...

A simply supported beam of span "L" and uniform flexural rigidity EI, carries a point load (P=wL) at mid-span and a uniformly distributed load (w) throughout the span. The maximum deflection is -------.

In: Civil Engineering

Date: May 1, 2012 Just a month ago, Troy was fired, and replaced with Jamaal, a...

Date: May 1, 2012

Just a month ago, Troy was fired, and replaced with Jamaal, a three year veteran of the maintenance department. He had a good attitude and was eager to please. He was well known and popular throughout the plant. And, while a few of the maintained workers resented his new position, Jamaal was mostly well respected and provided good leadership.

After replacing Troy, the maintained department made huge strides—productivity was up in every area of the factory, due in large part to better run-times on nearly all of the machines.   While that is exactly what Patrick was looking for, he had been hearing reports of more in-fighting within the group. The same two maintenance workers that got into the physical fight a couple of months ago (refer to Part 6 of the case study) did it again. But, this time they didn’t defend each other. Instead, they blamed each other.

Interestingly, while conflict among the maintenance department was increasing, conflict among the leadership team was decreasing. Dramatically. Even though things were better, they were far from perfect. Quality was still a huge issue, and little improvement had been made in that area. Too, the scrap rate was through the roof—they threw away nearly as much steel as they used, leading to a 50% scrap rate. With the price of steel constantly on the rise, it was worrisome. More worrisome was the fact that much of the scrap was the result of the machines—while they were running, many of the steel cutters and steel benders had divots, pocks, and cracks that led to bad cuts. These bad cuts inevitably meant that nearly half of the pieces of steel being cut were being sent to the scrap heap—no one wanted to spend big money on a grill with a dent or chip.

In the last leadership meeting, Patrick expected that Janet and Jose would discuss the issue of scrap with Jamaal. Yet, when Patrick raised the issue in the meeting, neither spoke up. Patrick wondered why.

Answer the following questions:

  1. First, describe your gut reaction to this scenario. What do you think?

  2. Describe the conflict within the maintenance group. Why does conflict like that happen? What does the text say about it, and what are its antecedents and consequences?

  3. Do you think that there is conflict within the leadership team? Describe it and explain why scenarios like that happen. What does the text say about it, and what are its antecedents and consequences?

  4. Based upon what you have learned from the text, what recommendations do you have for Patrick. Be specific.

In: Operations Management

Can someone find what's wrong? If I don't use the last main method Netbeans says that...

Can someone find what's wrong? If I don't use the last main method Netbeans says that there is no main method. I can't figure out what's wrong.

This was the prompt:

Design a class named triangle that extends geometricObject. For this, you should have created a GeometricObject class first. The class contains:

  • Three double datafields named side1, side2, side3 with default value 1.0.
  • A no arg constructor that creates a default triangle.
  • A constructor that creates a triangle with specified side1, side2 and side3.
  • A method named getPerimeter() that returns the perimeter of a triangle.
  • A method name toString that returns the string description of a triangle.(including color and filled)

Your main method should create a triangle object and display it using toString()

This is my code:

package geometricobject;

/**
*
*
*/
public class GeometricObject {

/**
* @param args the command line arguments
*/
private String color = "white";
private boolean filled;
private java.util.Date dateCreated;

public GeometricObject() {
dateCreated = new java.util.Date();
}

public GeometricObject(String color, boolean filled) {
dateCreated = new java.util.Date();
this.color = color;
this.filled = filled;
}

public String getColor() {
return color;
}

public void setColor(String color) {
this.color = color;
}

public boolean isFilled() {
return filled;
}

public void setFilled(boolean filled) {
this.filled = filled;
}

public java.util.Date getDatecreated() {
return dateCreated;
}
  
public String toString() {
return "created on" + dateCreated + "\ncolor: " + color+ " and filled: " + filled;
}
  


public class triangle extends GeometricObject
{
private double side1;
private double side2;
private double side3;
  
public triangle() {
side1 = 1;
side2 = 1;
side3 = 1;
}
  
public triangle(double side1, double side2, double side3) {
this.side1 = side1;
this.side2 = side2;
this.side3 = side3;
}
public double getSide1() {
return side1;
}
public double getSide2() {
return side2;
}
public double getSide3() {
return side3;
}
public void setSide1(double side1) {
this.side1 = side1;
}
public void setSide2(double side2) {
this.side2 = side2;
}
public void setSide3(double side3) {
this.side3 = side3;
}
public double getArea() {
double n = (side1+side2+side3) / 2.0;
return Math.sqrt(n*(n-side1)*(n-side2)*(n-side3));
}
public double getPerimeter() {
return side1 + side2 + side3;
}
  
@Override
public String toString() {
return super.toString() + "Triangle: side1 = " + side1 + " side2 = " + side2 + "side3 = " + side3 ;

}}}

In: Computer Science

Please describe four essential components of TGFb signaling pathway in terms of gene name and function...

Please describe four essential components of TGFb signaling pathway in terms of gene name and function under normal and cancer conditions as a table summary

In: Biology

T or F 36. GDP= C + I + G + NX; I REPRESENTS CORPORATE INVESTMENTS...

T or F

36. GDP= C + I + G + NX; I REPRESENTS CORPORATE INVESTMENTS AND CONSUMERS BUYING

HOUSES FOR THEIR FIRST TIME.

37. PUBLIC TRANSFER PAYMENTS INCLUDES SOCIAL SECURITY, UNEMPLOYMENT

COMPENSATION, AND AUNT TINA GIVING HER FAVORITE NEPHEW $ 250,000.

38. NOMINAL GDP= GDP - INFLATION.

39. DISCRETIONARY INCOME= DISPOSAL INCOME + (EXPENSES – 0) x 1.0.

40. STAGFLATION IS THE WORST OF ATIONS AFTER HYPERINFLATION.

41. MUTUAL FUNDS ARE A POOL OF MANY INVESTMENTS AND GIVES DIVERSIFICATION. THEY

ARE NOT SAFE.

42. THE UNEMPLOYED INCLUDES EVERYONE WITHOUT A JOB AND ARE LOOKING FOR A JOB

DURING THE LAST 4 WEEKS.

In: Economics

1. A potter's wheel is rotating around a vertical axis through its center at a frequency...

1. A potter's wheel is rotating around a vertical axis through its center at a frequency of 1.8rev/s . The wheel can be considered a uniform disk of mass 5.0kg and diameter 0.30m . The potter then throws a 3.2-kg chunk of clay, approximately shaped as a flat disk of radius 8.0cm , onto the center of the rotating wheel.

What is the frequency of the wheel after the clay sticks to it? Ignore friction.

Express your answer using two significant figures.

f =

rev/s

In: Physics

USING C++ Create a program that defines a struct for a student. The following data should...

USING C++

Create a program that defines a struct for a student. The following data should be part of the struct: studentID (int), gpa(double), fullName(string), units(int).

Instantiate two students and have the user type in information for each, then print both back to the screen afterwards. Input validation: studentID should be positive and have 4 digits, GPA should be between 0 and 4 (inclusive), units should be positive. Have any invalid inputs reentered.

In: Computer Science

Before preparing Part A, answer in complete sentences these 2 questions: 1. Looking at the direct...

Before preparing Part A, answer in complete sentences these 2 questions:

1. Looking at the direct materials equations for Standard Costs and Actual Costs, is the materials

price variance favorable or unfavorable? Why?

2. Looking at the direct materials equations for Standard Costs and Actual Costs, is the materials

Problem A

Direct materials, direct labor, and factory overhead cost variance analysis

Obj. 3, 4Mackinaw Inc. processes a base chemical into plastic. Standard costs and actual costs for direct materials, direct labor, and factory overhead incurred for the manufacture of 40,000 units of product were as follows:

Standard Costs

Actual Costs

Direct materials

120,000 lbs. at $3.20 per lb.

118,500 lbs. at $3.25 per lb.

Direct labor

12,000 hrs. at $24.40 per hr.

11,700 hrs. at $25.00 per hr.

Factory overhead

Rates per direct labor hr., based on 100% of normal capacity of 15,000 direct labor hrs.:

 Variable cost, $8.00

$91,200 variable cost

 Fixed cost, $10.00

$150,000 fixed cost

Each unit requires 0.3 hour of direct labor.

Instructions

  1. Determine (A) the direct materials price variance, direct materials quantity variance, and total direct materials cost variance; (B) the direct labor rate variance, direct labor time variance, and total direct labor cost variance; and (C) the variable factory overhead controllable variance, fixed factory overhead volume variance, and total factory overhead cost variance.

In: Accounting

The Holtz Corporation acquired 80 percent of the 100,000 outstanding voting shares of Devine, Inc., for...

The Holtz Corporation acquired 80 percent of the 100,000 outstanding voting shares of Devine, Inc., for $6.70 per share on January 1, 2017. The remaining 20 percent of Devine’s shares also traded actively at $6.70 per share before and after Holtz’s acquisition. An appraisal made on that date determined that all book values appropriately reflected the fair values of Devine’s underlying accounts except that a building with a 5-year future life was undervalued by $57,000 and a fully amortized trademark with an estimated 10-year remaining life had a $69,000 fair value. At the acquisition date, Devine reported common stock of $100,000 and a retained earnings balance of $224,000.

Following are the separate financial statements for the year ending December 31, 2018:

Holtz
Corporation
Devine,
Inc.
Sales $ (800,000 ) $ (379,500 )
Cost of goods sold 285,000 146,000
Operating expenses 299,000 130,500
Dividend income (16,000 ) 0
Net income $ (232,000 ) $ (103,000 )
Retained earnings, 1/1/18 $ (777,000 ) $ (294,000 )
Net income (above) (232,000 ) (103,000 )
Dividends declared 90,000 20,000
Retained earnings, 12/31/18 $ (919,000 ) $ (377,000 )
Current assets $ 238,500 $ 177,000
Investment in Devine, Inc 536,000 0
Buildings and equipment (net) 870,000 357,000
Trademarks 137,000 188,000
Total assets $ 1,781,500 $ 722,000
Liabilities $ (542,500 ) $ (245,000 )
Common stock (320,000 ) (100,000 )
Retained earnings, 12/31/18 (above) (919,000 ) (377,000 )
Total liabilities and equities $ (1,781,500 ) $ (722,000 )

At year-end, there were no intra-entity receivables or payables.

  1. Prepare a worksheet to consolidate these two companies as of December 31, 2018.

  2. Prepare a 2018 consolidated income statement for Holtz and Devine.

  3. If instead the noncontrolling interest shares of Devine had traded for $4.50 surrounding Holtz’s acquisition date, what is the impact on goodwill?

In: Accounting

1. From society’s perspective, is it better for a market to be served by one firm...

1. From society’s perspective, is it better for a market to be served by one firm - a price-setting monopoly, or by many small price-taking firms? Discuss.

2. Explain what monetary policy is, how it is implemented in Australia by the Reserve Bank of Australia, and what type of monetary policy you would recommend the RBA to implement at this point in time.

In: Economics

Please read carefully. Your younger sister wants to start a business that sells a product in...

Please read carefully.

Your younger sister wants to start a business that sells a product in the UAE. She found a supplier in France who can provide her with one of these products:

- Coffee (for 5 dhs/coffee bag)

- Mascara (for 5 dhs/mascara)

From your own words and understanding of entrepreneurial marketing. There is not right or wrong answer as long as you provide good reasons from your understanding of entrepreneurial marketing.

1. Which product do you advise her to sell? (0.5 point)

2. Why? (1 point)

3. Which approach of pricing do you advise her to follow? What price do you suggest? why?  provide complete explanation with example (1.5 points)

4. which approach of selling you advise her to use (direct or indirect) And why? Where do you advise her to sell? and Why? provide complete explanation with example (2 points)


Provide complete long answers with explanation. Avoid short points, show me your understanding.

In: Economics

On January 4, 2018, Runyan Bakery paid $324 million for 10 million shares of Lavery Labeling...

On January 4, 2018, Runyan Bakery paid $324 million for 10 million shares of Lavery Labeling Company common stock. The investment represents a 30% interest in the net assets of Lavery and gave Runyan the ability to excercise significant influence over Lavery's operations. Runyan chose the fair value option to account for this investment. Runyan received dividends of $2.00 per share on December 31, 2018, and Lavery reported net income of $160 million for the year ended December 31, 2018. The market value of Lavery's common stock at December 31, 2018 was $31 per share. On the purchase date, the book value of Lavery's net assets was $800 million and:

a. The fair value of Lavery's depreciable assets, with an average remaining useful life of six years, exceeded their book value by $80 million.

b. The remainder of the excess of the cost of the investment over the book value of net assets purchased was attributable to goodwill.

Required:

1-a. Prepare all appropriate journal entries related to the investment during 2018, assuming Runyan accounts for this investment under fair value option, and accounts for the Lavery investment in a manner similar to what it would use for securities for which there is not specific influence.

1-b Calculate the effect of these journal entries on 2018 net income, and the amount at which the investment is carried in the December 31, 2018, balance sheet.

2-a Prepare all appropriate journal entries related to the investment during 2018, assuming Runyan accounts for this investment under the fair value option, but uses equity method accounting to account for Lavery's income and dividends, and then records a fair value adjustment at the end of the year that allows it to comply with GAAP.

2-b Calculate the effect of these journal entries on 2018 net income, and the amount at which the investment is carried in the December 31, 2018, balance sheet.

In: Accounting

Regulation of gene expression occurs primarily at the level of transcription. What would be different if...

Regulation of gene expression occurs primarily at the level of transcription. What would be different if cells controlled gene expression primarily at the level of translation?

a.

The ability to rapidly respond to environmental change would be reduced.

b.

Genes would no longer be transcribed efficiently.

c.

Cells would expend significantly more energy.

d.

Many different protein isoforms would be produced.

e.

Translation of mRNA would not occur.

If an enhancer associated with a gene was deleted or mutated, what would be the effect on levels of gene expression?

a.

Gene expression would be reduced or not occur at the appropriate time.

b.

The gene would not be recognized by RNA polymerase.

c.

Gene expression would not occur at all.

d.

Gene expression would increase or occur at the inappropriate time.

Cells regulate gene expression at the level of translation by:

a.

controlling ribosome binding at the 5' end of mRNA.

b.

controlling the length of the polyA tail.

c.

controlling the amount of amino acids used.

d.

a and b

e.

a, b and c

f.

a and c

In: Biology

Discuss some of the most recent violations that have taken place in both men's and women’s...

  1. Discuss some of the most recent violations that have taken place in both men's and women’s sports at the NCAA level.
  2. What are the ethical problems facing the leaders of the IOC?

In: Operations Management

A psychologist is examining the educational advantages of a preschool program and suspects that there will...

A psychologist is examining the educational advantages of a preschool program and suspects that there will be significant (α = .01) differences in achievement among 4th graders based on whether or not they attended preschool. Twenty-three randomly selected 4th grade children are used in the study. Twelve attended a preschool program and eleven did not (see the data below).

Group 1 - Preschool: 8, 6, 8, 9, 7, 9, 6, 9, 8, 9, 7, 8

Group 2 - No Preschool: 6, 5, 7, 6, 8, 5, 7, 5, 6, 7, 5

What is the alternative hypothesis for this independent samples t-test?

Group of answer choices µ1 - µ2 ≥ 0 µ1 - µ2 = 0 µ1 - µ2 ≠ 0 µ1 - µ2 ≤ 0 µ1 - µ2 µ1 - µ2 > 0

In: Math