BRIGHT HEADLIGHTS
AND SEVERE WEATHER CONDITIONS
Answer:
Q = 125.538 W
Explanation:
Given data:
D = 30 cm
Temperature
degree celcius

Heat coefficient = 12 W/m^2 K
Efficiency 80% = 0.8


Q = 125.538 W
To put out a class D metal fire, you must smother the fire and eliminate the oxygen element in the fire.
<h3>What is a Class D fire?</h3>
A class D fire is a type of fire that cannot be extinguished by water. This is because adding water to it reacts with other elements in the fire intensifying the fire even more.
Smothering in this context involves adding a solution like carbon dioxide (CO2) into the fire, this results in a reduction of oxygen in the atmosphere surrounding the class D fire.
By so doing, smothering the fire eliminates the oxygen element in the fire, thereby extinguishing the fire.
You can learn more about extinguishing fires here https://brainly.in/question/760550
#SPJ1
Yes, the green LED emits light when we connect the banana plug wires across it.
This indicates that the threshold voltage is lower for the green LED light than the blue.
<u>Explanation</u>:
A banana plug is named for its resemblance to the shape of a banana. They are wider in the middle of the plug, and narrower at the top and bottom. The banana plug can be easily plugged or unplugged into the ports of speaker or receiver.
LED lights emit photons when it is applied with electrical charge. LED lights are more efficient and last longer than incandescent light bulbs. Green light is commonly provides the calming effect. It is generally used in hyper-pigmentation treatment.
Answer:
class TriangleNumbers
{
public static void main (String[] args)
{
for (int number = 1; number <= 10; ++number) {
int sum = 1;
System.out.print("1");
for (int summed = 2; summed <= number; ++summed) {
sum += summed;
System.out.print(" + " + Integer.toString(summed));
}
System.out.print(" = " + Integer.toString(sum) + '\n');
}
}
}
Explanation:
We need to run the code for each of the 10 lines. Each time we sum numbers from 1 to n. We start with 1, then add numbers from 2 to n (and print the operation). At the end, we always print the equals sign, the sum and a newline character.