Answer:
The term Accuracy means that how close our result to the original result.
Suppose we do any experiment in laboratory and we calculate mass = 7 kg but answer is mass = 15 kg then our answer is not accurate.
And the term Precision means how likely we get result like this.
Suppose we do any experiment in laboratory and we calculate mass five times and each time we get mass = 7 kg then our answer is precised but not accurate.
Answer:
Computer program
Explanation:
I use Revit and its way better to do all that you can see 2D 3D the measurements and its super easy to use hope this helps
Answer: (a) 9.00 Mega Newtons or 9.00 * 10^6 N
(b) 17.1 m
Explanation: The length of wall under the surface can be given by

The average pressure on the surface of the wall is the pressure at the centeroid of the equilateral triangular block which can be then be calculated by multiplying it with the Plate Area which will provide us with the Resultant force.
![F(resultant) = Pavg ( A) = (Patm + \rho g h c)*A \\= [100000 N/m^2 + (1000 kg/m^3 * 9.81 m/s^2 * 25m/2)]* (140*25m/sin60)\\= 8.997*10^8 N \\= 9.0*10^8 N](https://tex.z-dn.net/?f=F%28resultant%29%20%3D%20Pavg%20%28%20A%29%20%3D%20%28Patm%20%2B%20%20%5Crho%20g%20h%20c%29%2AA%20%5C%5C%3D%20%5B100000%20N%2Fm%5E2%20%2B%20%281000%20kg%2Fm%5E3%20%2A%209.81%20m%2Fs%5E2%20%2A%2025m%2F2%29%5D%2A%20%28140%2A25m%2Fsin60%29%5C%5C%3D%208.997%2A10%5E8%20N%20%5C%5C%3D%209.0%2A10%5E8%20N)
Noting from the Bernoulli equation that

From the second image attached the distance of the pressure center from the free surface of the water along the surface of the wall is given by:
Substituting the values gives us the the distance of the surface to be equal to = 17.1 m
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.
Technician B is correct because the way aluminum collapses can be predicted.
Hardened steel and aluminum are two metals used for different purposes including:
- Construction.
- Appliances.
- Small utensils.
- Airplanes.
- Vehicles.
These two materials have slightly different features in terms of resistance, flexibility, etc.
In the case of hardened steel, this is considered to be malleable but strong. This means it is possible to change its shape under some conditions but it can resist great forces and pressure. Moreover, if the hardening process is carried out properly all the areas should be equally strong.
On the other hand, aluminum is recognized due to its durability and for being lighter than other materials. Despite this, aluminum is more flexible than steel and collapses under weaker forces. This has been widely studied because aluminum collapse shows a predictable pattern.
Based on this, only technician B is correct.
Learn more in: brainly.com/question/24043240