Answer:
sorry im answering questions for the points cuz im built dfferent
Explanation:
Answer:
The correct option is;
D. The vessel has closed living spaces onboard
Explanation:
Type B-1 Fire extinguishers
A fire extinguisher is required by the law to be installed in a boat that hs the following specifications
1) There are closed compartment in the boat that can be used for fuel storage
2) There exist double double bottom that is only partially filled with flotation materials
3) There are closed living spaces in the boat
4) The fuel tank is permanently installed in the boat
5) The engine is inboard.
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:
il(t) = e^(-100t)
Explanation:
The current from the source when the switch is closed is the current through an equivalent load of 15 + 50║50 = 15+25 = 40 ohms. That is, it is 80/40 = 2 amperes. That current is split evenly between the two parallel 50-ohm resistors, so the initial inductor current is 2/2 = 1 ampere.
The time constant is L/R = 0.20/20 = 0.01 seconds. Then the decaying current is described by ...
il(t) = e^(-t/.01)
il(t) = e^(-100t) . . . amperes