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:
a) P ≥ 22.164 Kips
b) Q = 5.4 Kips
Explanation:
GIven
W = 18 Kips
μ₁ = 0.30
μ₂ = 0.60
a) P = ?
We get F₁ and F₂ as follows:
F₁ = μ₁*W = 0.30*18 Kips = 5.4 Kips
F₂ = μ₂*Nef = 0.6*Nef
Then, we apply
∑Fy = 0 (+↑)
Nef*Cos 12º - F₂*Sin 12º = W
⇒ Nef*Cos 12º - (0.6*Nef)*Sin 12º = 18
⇒ Nef = 21.09 Kips
Wedge moves if
P ≥ F₁ + F₂*Cos 12º + Nef*Sin 12º
⇒ P ≥ 5.4 Kips + 0.6*21.09 Kips*Cos 12º + 21.09 Kips*Sin 12º
⇒ P ≥ 22.164 Kips
b) For the static equilibrium of base plate
Q = F₁ = 5.4 Kips
We can see the pic shown in order to understand the question.
Answer:
Spindle
Explanation:
Please mark me brainliest
Answer:
In 2019, the average term length was 69 months for new cars and 65 months for used vehicles. Most car loans are available in 12 month increments, lasting between two and eight years. The most common loan terms are 24, 36, 48, 60, 72, and 84 months, according to Autotrader
Explanation: