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:
1.0MG
Explanation:
to solve this problem we use this formula
S₀-S/t = ksx --- (1)
the values have been given as
concentration = S₀ = 250mg
effluent concentration = S= 10mg
value of K = 0.04L/day
x = 3000 mg
when we put these values into this equation,
250-10/t = 0.04x10x3000
240/t = 1200
we cross multiply from this stage
240 = 1200t
t = 240/1200
t = 0.2
remember the question says that 5MGD is required to be treated
so the volume would be
v = 0.2x5
= 1.0 MG
Answer:
screw is the answer of the question
Answer:
q=39.15 W/m²
Explanation:
We know that
Thermal resistance due to conductivity given as
R=L/KA
Thermal resistance due to heat transfer coefficient given as
R=1/hA
Total thermal resistance

Now by putting the values


We know that
Q=ΔT/R


So heat transfer per unit volume is 39.15 W/m²
q=39.15 W/m²
C. seems like the best answer. i may be wrong so don’t quote me on that