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
mario62 [17]
3 years ago
12

The Manufacturing sector is the only sector where Lean manufacturing philosophy can be applied. a)- True b)- False

Engineering
1 answer:
AlladinOne [14]3 years ago
5 0

Answer:

b). false

Explanation:

<u>Lean manufacturing</u>

Lean manufacturing, a philosophy developed by Toyota Production System are means to eliminate wastes. They are defined as the techniques or management activities in eliminating wastes and increasing the efficiency inside an organisation.

    According to the concept of lean manufacturing, mainly seven types of wastes are identified. They are :

1. Transportation waste

2. Inventory waste

3. Over production

4. Waiting

5. Defects

6. Motion waste

7. Non utilized talent

All these waste affect greatly to the efficiency of an organisation and devalue its services.  Lean manufacturing advises to prevent  all these waste in order to increase the productivity.

       All the management activities and techniques used in lean manufacturing may be different according to the business application but they are all based on the same basic principle of removing wastes and errors and increase efficiency.

The different sectors that are benefiting from lean manufacturing methodology are

Healthcare

Hospitality

Food and Beverage

Government

Manufacturing

Lean manufacturing can be used in different sectors.

You might be interested in
1.0•10^-10 standard form
Drupady [299]

Answer:

1.0 * 10^{-10} = 0.0000000001

Explanation:

Given

1.0 * 10^{-10}

Required

Convert to standard form

1.0 * 10^{-10}

From laws of indices

a^{-x} = \frac{1}{a^x}

So, 1.0 * 10^{-10} is equivalent to

1.0 * 10^{-10} = 1.0 * \frac{1}{10^{10}}

1.0 * 10^{-10} = 1.0 * \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}* \frac{1}{10}

1.0 * 10^{-10} = 1.0 * \frac{1}{10000000000}

1.0 * 10^{-10} = 1.0 * 0.0000000001

1.0 * 10^{-10} = 0.0000000001

Hence, the standard form of 1.0 * 10^{-10} is 0.0000000001

3 0
3 years ago
A 600 MW power plant has an efficiency of 36 percent with 15
ololo11 [35]

Answer:

401.3 kg/s

Explanation:

The power plant has an efficiency of 36%. This means 64% of the heat form the source (q1) will become waste heat. Of the waste heat, 85% will be taken away by water (qw).

qw = 0.85 * q2

q2 = 0.64 * q1

p = 0.36 * q1

q1 = p /0.36

q2 = 0.64/0.36 * p

qw = 0.85 *0.64/0.36 * p

qw = 0.85 *0.64/0.36 * 600 = 907 MW

In evaporation water becomes vapor absorbing heat without going to the boiling point (similar to how sweating takes heat from the human body)

The latent heat for the vaporization of water is:

SLH = 2.26 MJ/kg

So, to dissipate 907 MW

G = qw * SLH = 907 / 2.26 = 401.3 kg/s

8 0
3 years ago
Read 2 more answers
The purpose of pasteurizing milk is to A. Kill pathogens B. Break down milk fat C. Add vitamins and minerals D. Prevent spoilage
motikmotik
Answer: A Kill pathogens
7 0
3 years ago
Someone claims that in fully developed turbulent flow in a tube, the shear stress is a maximum at the tube surface. Is this clai
Alika [10]

Answer:

Yes this claim is correct.

Explanation:

The shear stress at any point is proportional to the velocity gradient at any that point. Since the fluid that is in contact with the pipe wall shall have zero velocity due to no flow boundary condition and if we move small distance away from the wall the velocity will have a non zero value thus a maximum gradient will exist at the surface of the pipe hence correspondingly the shear stresses will also be maximum.

5 0
3 years ago
Write a GUI-based program that plays a guess-the-number game in which the roles of the computer and the user are the reverse of
AURORKA [14]

Answer:

import javax.swing.*;

import java.awt.*;

import java.util.Random;

import java.awt.event.*;

public class Guess extends JFrame

{

   private static final long serialVersionUID = 1L;

   private JButton newGame;

   private JButton enter;

   private JButton exit;

   private JTextField guess;

   private JLabel initialTextLabel;

   private JLabel enterLabel;

   private JLabel userMessageLabel;

   private int randNum;

   private int userInput;

   private int maxtries = 0;

   public Guess()

   {

       super("Guessing Game");

       newGame = new JButton("New Game");

       exit = new JButton("Exit Game");

       enter = new JButton("Enter");

       guess = new JTextField(4);

       initialTextLabel = new JLabel("I'm thinking of a number between 1 and 100. Guess it!");

       enterLabel = new JLabel("Enter your guess.");

       userMessageLabel = new JLabel("");

       randNum = new Random().nextInt(100) + 1;

       setLayout(new FlowLayout());

       add(initialTextLabel);

       add(enterLabel);

       add(guess);

       add(newGame);

       add(enter);

       add(exit);

       add(userMessageLabel);

   

       setSize(500, 300);

       addWindowListener(new WindowAdapter()

       {

           public void windowClosing(WindowEvent e)

           {

               System.exit(0);

           }

       });

       newGameButtonHandler nghandler = new newGameButtonHandler();

       newGame.addActionListener(nghandler);

       ExitButtonHandler exithandler = new ExitButtonHandler();

       exit.addActionListener(exithandler);

       enterButtonHandler enterhandler = new enterButtonHandler();

       enter.addActionListener(enterhandler);

   }

   class newGameButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           setBackground(Color.ORANGE);

           guess.setEnabled(true);

           guess.setText("");

           enter.setEnabled(true);

           maxtries = 0;

           userMessageLabel.setText("");

           randNum = new Random().nextInt(100) + 1;

       }

   }

   class ExitButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           System.exit(0);

       }

   }

   class enterButtonHandler implements ActionListener

   {

       public void actionPerformed(ActionEvent e)

       {

           userInput = Integer.parseInt(guess.getText());

           checkGuess(randNum);

      if(userInput > 100 )

          {

                               userMessageLabel.setText("invalid entry");

          }

       }

   }

   public void checkGuess(int randomNumber)

   {

       maxtries++;

     if(maxtries==10){

           userMessageLabel.setText("You Lose!!");

           guess.setEnabled(false);

           enter.setEnabled(false);

         

       }else if (userInput == randomNumber)

           {

               userMessageLabel.setText("Correct !");

           }

       else if (userInput > randomNumber)

           {

               userMessageLabel.setText("Too high");

           }

       else if (userInput < randomNumber)

           {

               userMessageLabel.setText("Too Low");

           }

   }

   public static void main(String[] args)

   {

       Guess game = new Guess();

       game.setVisible(true);

   }

}

8 0
3 years ago
Other questions:
  • Is the ASUS ROG Strix B450-F Gaming amd ryzen 5 3600 ready?
    7·2 answers
  • Show how am MDP with a reward function R(s, a, s’) can be transformed into a different MDP with reward function R(s, a), such th
    15·1 answer
  • The screw of shaft straightener exerts a load of 30 as shown in Figure . The screw is square threaded of outside diameter 75 mm
    5·1 answer
  • Explain how potential energy converts to kinetic energy in the loop-the-loop section of the roller coaster. Make sure to note wh
    8·1 answer
  • A heat engine operates between 2 reservoirs at TH and 18oC. The heat engine receives 17,000 kJ/h from the high temperature reser
    10·1 answer
  • ¿Cómo nos podría ayudar una hoja de cálculo en nuestro estudio?
    11·1 answer
  • Nơi nào có điện tích thì xung quanh điện tích đó có :
    9·1 answer
  • Propose any improvements if there are any in brake system
    7·1 answer
  • If you’re still enrolled in school, but are looking for a job, on your resume you should highlight:
    15·1 answer
  • During delivery of a 2023 ariya equipped with propilot assist 2. 0, what should you point out to your customers about the turn s
    12·1 answer
Add answer
Login
Not registered? Fast signup
Signup
Login Signup
Ask question!