Answer:
uhhhhh, are you kidding? a GTX 3060 is far better than a 1060 ding dong
Explanation:
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
Answer:
#include <iostream>
using namespace std;
void PrintPopcornTime(int bagOunces) {
if(bagOunces < 3){
cout << "Too small";
cout << endl;
}
else if(bagOunces > 10){
cout << "Too large";
cout << endl;
}
else{
cout << (6 * bagOunces) << " seconds" << endl;
}
}
int main() {
PrintPopcornTime(7);
return 0;
}
Explanation:
Using C++ to write the program. In line 1 we define the header "#include <iostream>" that defines the standard input/output stream objects. In line 2 "using namespace std" gives me the ability to use classes or functions, From lines 5 to 17 we define the function "PrintPopcornTime(), with int parameter bagOunces" Line 19 we can then call the function using 7 as the argument "PrintPopcornTime(7);" to get the expected output.
Answer:
3A
Explanation:
Using Ohms law U=I×R solve for I by I=U/R