Course Solutions Uncategorized (Answered) : Which one of the following is true in MRP? a. Safety lead time is used to handle uncertainty with demand b. Safety stock w

(Answered) : Which one of the following is true in MRP? a. Safety lead time is used to handle uncertainty with demand b. Safety stock w

Which one of the following is true in MRP?

a. Safety lead time is used to handle uncertainty with demand

b. Safety stock works the same way as safety lead time

c. Safety lead is essentially inflated lead time

d. Two weeks of lead time plus one week of safely lead time equals three weeks of lead time

e. None of the above

Expert Answer


Safety lead time is basically to handle uncertainty of lead time and not demand. For uncertainty of demand, there is safety stock. So option a is not the answer.

Safety stock and safety lead time are altogether different concepts. So

OR

PayPal Gateway not configured

OR

PayPal Gateway not configured

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

(Solved) : Code Previous Exercise Let Know Need Question Code Include Include Include Include Include Q30110728 . . . .(Solved) : Code Previous Exercise Let Know Need Question Code Include Include Include Include Include Q30110728 . . . .

<p style="margin-left:.25in;">//This was code from a previousexercise - let me know if you need the question for this code.</p><p>#include<iostream></p><p>#include<fstream></p><p>#include<vector></p><p>#include<string></p><p>#include<cstdlib></p><p>#include<cstring></p><p>using namespace std;</p><p>class InventoryItem{</p><p>private:</p><p>string description;</p><p>int quantityOnHand;</p><p>double price;</p><p>public:</p><p>InventoryItem()</p><p>{</p><p>description="NULL";</p><p>quantityOnHand=0;</p><p>price=0;</p><p>}</p><p>InventoryItem(string desc, int q, double p)</p><p>{</p><p>description=desc;</p><p>quantityOnHand=q;</p><p>price=p;</p><p>}</p><p>string