Answer:
Machine Safeguards must meet these minimum general requirements: Prevent contact: The safeguard must prevent hands, arms, or any other part of a worker's body from making contact with dangerous moving parts. Be secure: Workers should not be able to easily remove or tamper with the safeguard.
I’m a concrete mason myself and I can tell you it is a pain in the butt to Roto hammer a hole into the concrete to put the pipe in it’s a lot easier to just pour the concrete around it
Answer:
In Btu:
Q=0.001390 Btu.
In Joule:
Q=1.467 J
Part B:
Temperature at midpoint=274.866 C
Explanation:
Thermal Conductivity=k=30 (Btu/hr)/(ft ⋅ °F)= 
Thermal Conductivity is SI units:

Length=20 cm=0.2 m= (20*0.0328) ft=0.656 ft
Radius=4/2=2 mm =0.002 m=(0.002*3.28)ft=0.00656 ft
T_1=500 C=932 F
T_2=50 C= 122 F
Part A:
In Joules (J)

Heat Q is:

In Btu:

Heat Q is:

PArt B:
At midpoint Length=L/2=0.1 m

On rearranging:


Answer:
Java program explained below
Explanation:
FindSpecialNumber.java
import java.util.Scanner;
public class FindSpecialNumber {
public static void main(String[] args) {
//Declaring variable
int number;
/*
* Creating an Scanner class object which is used to get the inputs
* entered by the user
*/
Scanner sc = new Scanner(System.in);
//getting the input entered by the user
System.out.print("Enter a number :");
number = sc.nextInt();
/* Based on user entered number
* check whether it is special number or not
*/
if (number == -99 || number == 0 || number == 44) {
System.out.println("Special Number");
} else {
System.out.println("Not Special Number");
}
}
}
_______________
Output#1:
Enter a number :-99
Special Number
Output#2:
Enter a number :49
Not Special Number
Answer:
Explanation:
The answer to the given problem is been solved in the fine attached below.