Answer:
a)Cycle time = 2.37 min
b)Numbers of workers =21
c)Stations on the line =24
Explanation:
Given that
Total work content time(TWC) = 50 min
Production rate Rp= 24 units/hr
manning level will be close =1.5
Line balancing efficiency =0.94
a)
Cycle time


Cycle time = 2.37 min
b)
Numbers of workers ,W


W= 21
Numbers of workers =21
c)
Stations on the line(n)
Lets find service time Ts
Ts = Cycle time - Time for repositioning
Ts = Tc- Tr
Ts= 2.37 - 9/ 60 min
Ts= 2.22 min
We know that efficiency


n=23.94 ⇒n=24
n=24
Stations on the line =24
Answer:
In the result of a earthquake, you should direct people into areas that are safe, such as places where the ground has not been broken up, and then tell people to get out of their cars and be careful. You should also have them carry any valuable items out of the car(if they have time), and then wait until the initial shocks and aftershocks are over, and then tell them to get back into their cars and then drive carefully and safely.
Answer:
<em>Linus needs to take one of the zero out and it should be 30 instead 300.</em>
Explanation:
It is because Linus put three zero instead two zero.
Answer:
//Convert any decimal number to binary number
//Program is written in C++ Programming Language
// Comments are used for explanatory purpose
// Program starts here
#include <iostream>
using namespace std;
// Main Method declared here
int main()
{
int x;
cout<<"Enter any integer number: ";
cin>>x;
DecBin(x);
return 0;
}
// Here a function named DecBin is declared along with an integer variable, x
void DecBin(int x)
{
// Declare an array to store the resulting binary digits
int bindigit[32];
// counter for binary array
int kount = 0;
while (x > 0) {
// Store the remainder of each division in the declared array
bindigit[kount] = x % 2;
x = x / 2;
kount++;
}
// Loop to print the binary digits in reverse order
for (int j = i - 1; j >= 0; j--)
{
cout << bindigit[j];
}
}
// End of Program
Answer:
Hello, I'm good. Thank you for asking