Answer:
Option D
A mineral’s color reflects the wavelengths of light that are absorbed by the mineral.
Explanation:
Color is one of the physical properties of minerals. Many minerals have a wide range of colors but there are some minerals with one consistent color and such minerals are referred as monochromatic minerals for example azurite. Normally, the streak color tends to be less variable than the color of the whole mineral and impurities or minor chemical components in a mineral react and often control the display color of resultant mineral. Option D is incorrect since mineral's color don't reflect wavelengths of light absorbed by such minerals.
Answer:
i believe the answer is a but i could be wrong
Explanation:
i hope it helps
Answer: True.
Explanation: Coolant is flammable and toxic.
Answer:
d) 9.55 psi
Explanation:
pressure at the bottom is =ρgh
weight density is ρg=55 lb/ft³
h=25ft
pressure at the bottom is =
=1375psf
1 ft = 12 inch
pressure at bottom =
= 9.55 psi
so, answer will be option (d) which is 9.55 psi
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.