if two 1.5 ya alt batteries are connected to head to the tail the voltage is 3.0 volt it is the because the battery is insidious reduce a voltage equal to number of battery is multiplied by the voltage of individual
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:
C₁₀ = 6.3 KN
Explanation:
The catalog rating of a bearing can be found by using the following formula:
C₁₀ = F [Ln/L₀n₀]^1/3
where,
C₁₀ = Catalog Rating = ?
F = Design Load = 2.75 KN
L = Design Life = 1800 rev/min
n = No. of Hours Desired = 10000 h
L₀ = Rating Life = 500 rev/min
n₀ = No. of Hours Rated = 3000 h
Therefore,
C₁₀ = [2.75 KN][(1800 rev/min)(10000 h)/(500 rev/min)(3000 h)]^1/3
C₁₀ = (2.75 KN)(2.289)
<u>C₁₀ = 6.3 KN</u>