Answer: 78.89%
Explanation:
Given : Sample size : n= 1200
Sample mean : 
Standard deviation : 
We assume that it follows Gaussian distribution (Normal distribution).
Let x be a random variable that represents the shaft diameter.
Using formula,
, the z-value corresponds to 2.39 will be :-

z-value corresponds to 2.60 will be :-

Using the standard normal table for z, we have
P-value = 

Hence, the percentage of the diameter of the total shipment of shafts will fall between 2.39 inch and 2.60 inch = 78.89%
Answer:
import java.util.Scanner;
public class FindMatchValue {
public static void main (String [] args) {
Scanner scnr = new Scanner(System.in);
final int NUM_VALS = 4;
int[] userValues = new int[NUM_VALS];
int i;
int matchValue;
int numMatches = -99; // Assign numMatches with 0 before your for loop
matchValue = scnr.nextInt();
for (i = 0; i < userValues.length; ++i) {
userValues[i] = scnr.nextInt();
}
/* Your solution goes here */
numMatches = 0;
for (i = 0; i < userValues.length; ++i) {
if(userValues[i] == matchValue) {
numMatches++;
}
}
System.out.println("matchValue: " + matchValue + ", numMatches: " + numMatches);
}
}
Answer:
D. a triangle and a T-Square
Explanation:
A T-Square is the best drawing tool to create squares. You would need a squares to create cubes.
Answer:
Following is attached the solution or the question given.
I hope it will help you a lot!
Explanation: