Answer:
Answer explained below
Explanation:
The following is the nested if-else statement:
% if-based statement
if num < -2 || num > 4
f1(num)
else
if num <=2
if num >= 0
f2(num)
else
f3(num)
end
else
f4(num)
end
end
<u>NOTE:</u> the num is an integer variable that has been initialized and that there are functions f1, f2, f3 and f4.
The nested if-else statement can be replaced by switch statement as shown below:
switch num
case(0, 1, 2)
f2(num)
case(-2, -1)
f3(num)
case(3, 4)
f4(num)
otherwise
f1(num)
In this case, the switch based code is easier to write and understand because the cases are single valued or a few discrete values (not ranges of values)
The examples of engineering controls is Biohazard waste containers and Spill clean up kits.
What is engineering controls?
An engineering controls is a workplace process that protect workers by removing hazardous conditions or by placing a barrier between the worker and the hazard.
An example of engineering controls is installation of exhaust ventilation to remove airborne emissions to shield the worker.
Hence, the examples of engineering controls is Biohazard waste containers and Spill clean up kits.
Therefore, the Option C and D is correct.
Uh I’m just gonna say yes because I think this is just something random
Answer:
See explanation for step by step procedure to get answer.
Explanation:
Given that:
The conveyor belt is moving downward at 4 m>s. If the coefficient of static friction between the conveyor and the 15-kg package B is ms = 0.8, determine the shortest time the belt can stop so that the package does not slide on the belt.
See the attachments for complete steps to get answer.