Answer:
engineering that works on building structures.
Explanation:
It’s true because convenience stores are more expensive so that means overall the items would be more expensive.
Answer:
Both Technician A and Technician B are correct
Explanation:
Air tools and electric tools are both power tools as they are used to make work easier. Air tools generally use an air compressor that powers the motor of the tool making it possible to use it while electric tools as the name implies are powered by an electric source which in this case is batteries. An example of an air tool is the nail gun which can be used by furniture makers to drive nails and they are often louder than electric tools because of vibrations caused by the compressor making it necessary to use ear protection when using the tool for ear safety.
Technician B is also correct because it is always advisable to use impact sockets while using impact guns due to the ability of the impact sockets to withstand the force caused by operating impact guns and make work neater when nuts and bolts are being loosened or tightened.
Answer:
P = $ 766.28
Explanation:
present value = ?
Future value = $ 2000
time = 5 years
compounded annually at the rate of = 10 %


2000 = P + 1.61 P
2.61 P = 2000
P = $ 766.28
hence, the present value of amount invested to get the future value of $2000 is equal to P = $ 766.28
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();
}
}