The answer is number 2) Increase the resistance of the concrete to freeze-thaw damage.
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:
Conductor
Explanation:
Current is carried by a conductor.
__
The purpose of a dielectric and/or insulator is to prevent current flow. An electrostatic field may set up the conditions for current flow, but it carries no current itself.
Answer:
B
Explanation:
This is a two sample t-test and not a matched pair t-test
null hypothesis(H0) will be that mean energy consumed by copper rotor motors is greater than or equal to mean energy consumed by aluminium rotor motors
alternate hypothesis(H1) will be that mean energy consumed by copper rotor motors is less than or equal to mean energy consumed by aluminium rotor motors.
So, option D is rejected
The hypothesis will not compare mean of differences of values of energy consumed by copper rotor motor and aluminium rotor motor.
Option A and C are also rejected