Answer:
leather, textiles, synthetics, shoelaces, glue, reinforcements, hardware, logos and midsoles
Answer:
20, 083 L
Explanation:
The mistake was the result of not using units when converting the 7862 l to Kg. They used the density in pounds hence they multiplied by 1.77 Lb/L and obtained 13597 Lb not Kg as they assumed.
To obtain the amount needed to refuel they subtracted this quantity from the 22,300 Kg required for the trip again obtaining the wrong quantity of 8703 Kg and they converted this to liters by dividing the density to get 4916 L and then placed then 5000 L of fuel
The quantity required was
7862 L * 1.77 Lb/L = 13915.74 Lb (pounds not kilos)
then converting this pounds to Kg by multiplying by 0.454 Kg/L one gets
6173 Kg on board
Amount Required
( 22,300 -6173) : 16127 Kg
16127 Kg/ 0.803 Kg/L = 20083 L
D is the answer. Hope this helped
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);
}
}