The other factor is 50
Hope this help <3
Help me and mark my answer as brainliest plz plz
Answer: Your question has some missing figures so kindly plug in the values into the solution provided to get the exact amount of money saved
answer : Electric power generated = 216 * 10^6 kJ
money saved = $0.XY * 60000 kwh
Explanation:
<u>Calculating the amount of electric power generated by wind turbine</u>
power generated = ( 30 * 2000 ) kWh = 60000 kWh
Electric energy generated = 60000 kWh * 3600 kJ = 216 * 10^6 kJ
<u>Calculate money saved by school per year </u>
$0.XY * 60000 kwh
Answer:
don't put fork in a electric socket
Hoiu-10,4000 mm.
<h3>
Is positive pressure good for PC?</h3>
- A balanced configuration is the most efficient way to cool your pc although it should tend towards a slight positive pressure if you can help it.
- Tip: As much as it might seem important, the concept of heat rising doesn't have too much of an effect.
To learn more about it, refer
to https://brainly.in/question/413163
#SPJ4
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();
}
}