1answer.
Ask question
Login Signup
Ask question
All categories
  • English
  • Mathematics
  • Social Studies
  • Business
  • History
  • Health
  • Geography
  • Biology
  • Physics
  • Chemistry
  • Computers and Technology
  • Arts
  • World Languages
  • Spanish
  • French
  • German
  • Advanced Placement (AP)
  • SAT
  • Medicine
  • Law
  • Engineering
Goshia [24]
3 years ago
14

Waste that is generated by a business is called a _____________.

Engineering
2 answers:
Vinil7 [7]3 years ago
7 0

Answer:

A waste stream

Explanation:

Vera_Pavlovna [14]3 years ago
7 0
Answer: Waste Stream
You might be interested in
If a fuel line is routed through a compartment parallel with an electrical wire bundle, the fuel line should be installed ______
Gala2k [10]
Below so if it was to leak or bust it wouldn’t be much of a harm to anyone
8 0
2 years ago
If the electric field just outside a thin conducting sheet is equal to 1.5 N/C, determine the surface charge density on the cond
Dennis_Churaev [7]

Answer:

The surface charge density on the conductor is found to be 26.55 x 1-6-12 C/m²

Explanation:

The electric field intensity due to a thin conducting sheet is given by the following formula:

Electric Field Intensity = (Surface Charge Density)/2(Permittivity of free space)

From this formula:

Surface Charge Density = 2(Electric Field Intensity)(Permittivity of free space)

We have the following data:

Electric Field Intensity = 1.5 N/C

Permittivity of free space = 8.85 x 10^-12 C²/N.m²

Therefore,

Surface Charge Density = 2(1.5 N/C)(8.85 x 10^-12 C²/Nm²)

<u>Surface Charge Density = 26.55 x 10^-12 C/m²</u>

Hence, the surface charge density on the conducting thin sheet will be 26.55 x 10^ -12 C/m².

7 0
3 years ago
At the instant shown, slider block B is moving with a constant acceleration, and its speed is 150 mm/s. Knowing that after slide
Xelga [282]

Answer:

a) aA = - 13.33 mm/s²

aB = - 20 mm/s²

b) aD = - 13.33 mm/s²

c) vB = 70 mm/s

d) xB = 440 mm

Explanation:

Given

The initial speed of B is: v₀B = 150 mm/s

Distance moved by A is: xA = 240 mm

Velocity of A is: vA = 60 mm/s

Assuming:

Displacement of blocks are denoted by:

A = xA

B = xB

C = xC

D = xD

From the pic shown, the total length of the cable is:

xB + (xB - xA) + 2*(d - xA) = L

⇒ 2*xB - 3*xA = L - 2*d

where L - 2*d is constant. Differentiating the above equation with respect to time:

d(2*xB)/dt - d(3*xA)/dt = 0

⇒ 2*vB - 3*vA = 0    (i)

Substituting in equation (i)

2*(150 mm/s) - 3*vA = 0

⇒ v₀A = 100 mm/s  (initial speed of A)

Then, we use the equation

vA² = v₀A² + 2*aA*xA

Substituting the values in above equation:

(60 mm/s)² = (100 mm/s)² + 2*aA*(240 mm)

⇒ aA = - 13.33 mm/s²

If  2*vB - 3*vA = 0

Differentiating the above equation with respect to time:

d(2*vB)/dt - d(3*vA)/dt = 0

⇒ 2*aB - 3*aA = 0    (ii)

Substituting in equation (ii)

2*aB - 3*(- 13.33 mm/s²) = 0

⇒ aB = - 20 mm/s²

b) From the pic shown,

xD - xA = constant

If we apply

d(xD)/dt - d(xA)/dt = 0

⇒ vD - vA = 0

then

d(vD)/dt - d(vA)/dt = 0

⇒ aD - aA = 0

⇒ aD = aA = - 13.33 mm/s²

c) We use the formula

vB = v₀B + aB*t

Substituting the values in above equation:

vB = 150 mm/s + (- 20 mm/s²)*(4 s)

⇒ vB = 70 mm/s

d) We apply the equation

xB = v₀B*t + 0.5*aB*t²

Substituting the values in above equation:

xB = (150 mm/s)*(4 s) + 0.5*(- 20 mm/s²)*(4 s)²

⇒ xB = 440 mm

4 0
3 years ago
Create an abstract class DiscountPolicy. It should have a single abstract method computeDiscount that will return the discount f
eimsori [14]

Answer:

Java Code was used to define classes in the abstract discount policy,The bulk discount, The buy items get one free and the combined discount

Explanation:

Solution

Code:

Main.java

public class Main {

public static void main(String[] args) {

  BulkDiscount bd=new BulkDiscount(10,5);

BuyNItemsGetOneFree bnd=new BuyNItemsGetOneFree(5);

CombinedDiscount cd=new CombinedDiscount(bd,bnd);

System.out.println("Bulk Discount :"+bd.computeDiscount(20, 20));

  System.out.println("Nth item discount :"+bnd.computeDiscount(20, 20));

 System.out.println("Combined discount :"+cd.computeDiscount(20, 20));    

  }

}

discountPolicy.java

public abstract class DiscountPolicy

{    

public abstract double computeDiscount(int count, double itemCost);

}    

BulkDiscount.java  

public class BulkDiscount extends DiscountPolicy

{    

private double percent;

private double minimum;

public BulkDiscount(int minimum, double percent)

{

this.minimum = minimum;

this.percent = percent;

}

at Override

public double computeDiscount(int count, double itemCost)

{

if (count >= minimum)

{

return (percent/100)*(count*itemCost); //discount is total price * percentage discount

}

return 0;

}

}

BuyNItemsGetOneFree.java

public class BuyNItemsGetOneFree extends DiscountPolicy

{

private int itemNumberForFree;

public BuyNItemsGetOneFree(int n)

{

  itemNumberForFree = n;

}

at Override

public double computeDiscount(int count, double itemCost)

{

if(count > itemNumberForFree)

return (count/itemNumberForFree)*itemCost;

else

  return 0;

}

}

CombinedDiscount.java

public class CombinedDiscount extends DiscountPolicy

{

private DiscountPolicy first, second;

public CombinedDiscount(DiscountPolicy firstDiscount, DiscountPolicy secondDiscount)

{

first = firstDiscount;

second = secondDiscount;

}

at Override

public double computeDiscount(int count, double itemCost)

{

double firstDiscount=first.computeDiscount(count, itemCost);

double secondDiscount=second.computeDiscount(count, itemCost);

if(firstDiscount>secondDiscount){

  return firstDiscount;

}else{

  return secondDiscount;

}

}  

}

6 0
3 years ago
1. Band saw lower wheel does not require a guard * true or false 2. Band saw upper guide should be adjusted to within 1/8" of th
Blizzard [7]

Answer:

1. Band saw lower wheel does not require a guard * true or false 2. Band saw upper guide should be adjusted to within 1/8" of the work piece * true or false 3. Find board & linear ft for 10 pieces of 4" x 4" x 8' *

4 0
2 years ago
Other questions:
  • Consider two electrochemical reaqctions. Reaction A results in the transfer of 2 mol of electrons per mole of reactant and gener
    14·2 answers
  • Which process is a from of mechanical weathering
    8·1 answer
  • Give two methods on how powder is produced in powder metallurgy.
    5·2 answers
  • Which tool is used to pull the tapered shaft on a tie-rod end from its mating steering component?
    9·1 answer
  • You have designed a bone plate that is manufactured via rolling under cold working conditions, and tests show good biocompatibil
    14·1 answer
  • 10. When an adhesion bond is made by melting a filler metal and allowing it to spread into the pores of the
    7·1 answer
  • Three possible career opportunities in embedded systems engineering
    11·1 answer
  • Which of the following is not necessary a reason to machine a brake drum?
    8·1 answer
  • Water at 20◦C is pumped through 1000 ft of 0.425 ft diameter pipe at a volumetric flowrate of 1 ft3/s through a cast iron pipe t
    14·1 answer
  • Summarize the difference in hydraulic and pneumatic systems.
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!