Answer: I would help you but I don’t know the answer, so sorry
Answer:
(d) 2 pF
Explanation: the charge on capacitor is given by the expression
Q=CV
where Q=charge
C=capacitance
V=voltage across the plate of the capacitor
here we have given Q=500 pF, V=250 volt
using this formula C=
=500×
×
=2×
=2 pF
Answer:

Explanation:
The phenomenon can be modelled after the Bernoulli's Principle, in which the sum of heads related to pressure and kinetic energy on ground level is equal to the head related to gravity.

The velocity of water delivered by the fire hose is:


The maximum height is cleared in the Bernoulli's equation:



Answer:
import java.util.*;
public class Main {
public static void main(String[] args) {
double milesPerGallon = 0;
int totalMiles = 0;
int totalGallons = 0;
double totalMPG = 0;
Scanner input = new Scanner(System.in);
while(true){
System.out.print("Enter the miles driven: ");
int miles = input.nextInt();
if(miles <= 0)
break;
else{
System.out.print("Enter the gallons used: ");
int gallons = input.nextInt();
totalMiles += miles;
totalGallons += gallons;
milesPerGallon = (double) miles/gallons;
totalMPG = (double) totalMiles / totalGallons;
System.out.printf("Miles per gallon for this trip is: %.1f\n", milesPerGallon);
System.out.printf("Total miles per gallon is: %.1f\n", totalMPG);
}
}
}
}
Explanation:
Initialize the variables
Create a while loop that iterates until the specified condition is met inside the loop
Inside the loop, ask the user to enter the miles. If the miles is less than or equal to 0, stop the loop. Otherwise, for each trip do the following: Ask the user to enter the gallons. Add the miles and gallons to totalMiles and totalGallons respectively. Calculate the milesPerGallon (divide miles by gallons). Calculate the totalMPG (divide totalMiles by totalGallons). Print the miles per gallon and total miles per gallon.
Answer:
The maximum length of the specimen before the deformation was 358 mm or 0.358 m.
Explanation:
The specific deformation ε for the material is:
(1)
Where δL and L represent the elongation and initial length respectively. From the HOOK's law we also now that for a linear deformation, the deformation and the normal stress applied relation can be written as:
(2)
Where E represents the elasticity modulus. By combining equations (1) and (2) in the following form:

So by calculating ε then will be possible to find L. The normal stress σ is computing with the applied force F and the cross-sectional area A:



Then de specific defotmation:

Finally the maximum specimen lenght for a elongation 0f 0.45 mm is:
