Answer: (D: Tweezers)
A basic first aid kit is always good to have in case of an emergency. The typical items found in a first aid kit are pain reliever, tweezers, alcohol wipes, gloves, antiseptic, medical tape, sterile gauze, insect bite swaps, triple-antibiotic ointment, hydrogen peroxide, bandage scissors, instant cold compresses, and of course bandages. There are various types of bandages that can be included; elastic bandages, adhesive bandages, and triangular bandages for starters.
Explanation:
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: a) The technology that deals with the generation, control and transmission of power using pressurized fluids
Explanation: Fluid power is defined as the fluids which are under pressure and then are used for generation,control and transmit the power. Fluid power systems produces high forces as well as power in small amount . These systems usually tend to have better life if maintained properly. The force that are applied on this system can be monitored by gauges as well as meter.
Explanation:
There are 8.35 pounds in a gallon of water. Water weighs 1 gram per cubic centimeter or 1 000 kilogram per cubic meter, i.e. density of water is equal to 1 000 kg/m³; at 25°C (77°F or 298.15K) at standard atmospheric pressure.