The modulus of elasticity is 28.6 X 10³ ksi
<u>Explanation:</u>
Given -
Length, l = 5in
Force, P = 8000lb
Area, A = 0.7in²
δ = 0.002in
Modulus of elasticity, E = ?
We know,
Modulus of elasticity, E = σ / ε
Where,
σ is normal stress
ε is normal strain
Normal stress can be calculated as:
σ = P/A
Where,
P is the force applied
A is the area of cross-section
By plugging in the values, we get
σ = 
σ = 11.43ksi
To calculate the normal strain we use the formula,
ε = δ / L
By plugging in the values we get,
ε = 
ε = 0.0004 in/in
Therefore, modulus of elasticity would be:

Thus, modulus of elasticity is 28.6 X 10³ ksi
Answer:
The annual operating cost of the refrigerator is $102.78.
Explanation:
Power consumed by the refrigerator = 247 W = 247/1000 = 0.247 kW
Daily operation of the refrigerator = 19 hours
Annual operation of the refrigerator = 365 × 19 = 6,935 hours
Annual energy consumed = 0.247 kW × 6,935 hours = 1712.945 kWh
1 kWh of electricity cost $0.06
1712.945 kWh will cost 1712.945 × $0.06 = $102.78
Annual operating cost = $102.78
Answer:
see explaination
Explanation:
import java.util.InputMismatchException;
import java.util.Scanner;
public class calculate {
static float a=0,b=0;
double cal()
{
if(a==0||b==0)
{
System.out.println("no values found in a or b");
start();
}
double x=(a*a)+(b*b);
double h=Math.sqrt(x);
a=0;
b=0;
return h;
}
float enter()
{
float val=0;
try
{
System.out.println("Enter side");
Scanner sc1 = new Scanner(System.in);
val = sc1.nextFloat();
return val;
}
catch(InputMismatchException e)
{
System.out.println("Enter correct value");
}
return val;
}
void start()
{
calculate c=new calculate();
while(true)
{
System.out.println("Enter Command");
Scanner sc = new Scanner(System.in);
String input = sc.nextLine();
switch(input)
{
case "A":
a=c.enter();
break;
case "B":
b=c.enter();
break;
case "C":
double res=c.cal();
System.out.println("Hypotenuse is : "+res);
break;
case "Q":
System.exit(0);
default:System.out.println("wrong command");
}
}
}
public static void main(String[] args) {
calculate c=new calculate();
c.start();
}
}
Answer:
The solid rod BC has a diameter of 30 mm and is made of an aluminum for which the allowable shearing stress is 25 MPa. Rod AB is hollow and has an outer diameter of 25 mm; it is made of a brass for which the allowable shearing stress is 50 MPa.