Answer:
How must used oil storage containers be marked? Containers and aboveground tanks used to store used oil at generator facilities must be labeled or marked clearly with the words “Used Oil" (40 CFR Section 279.22(c)).
Explanation:
i think it will help you
Answer:
Below is the desired C++ program for the problem. Do feel free to edit it according to your preference
Explanation:
#include <iostream>
#include <vector>
using namespace std;
void ExactChange(int userTotal, vector<int> &coinVals) {
coinVals.reserve(5);
coinVals[0] = userTotal / 100;
userTotal %= 100;
coinVals[1] = userTotal / 25;
userTotal %= 25;
coinVals[2] = userTotal / 10;
userTotal %= 10;
coinVals[3] = userTotal / 5;
userTotal %= 5;
coinVals[4] = userTotal;
}
int main() {
vector<int> coins;
int value;
cin >> value;
if (value <= 0) {
cout << "no change" << endl;
} else {
ExactChange(value, coins);
if (coins[0] != 0) cout << coins[0] << " " << (coins[0] == 1 ? "dollar" : "dollars") << endl;
if (coins[1] != 0) cout << coins[1] << " " << (coins[1] == 1 ? "quarter" : "quarters") << endl;
if (coins[2] != 0) cout << coins[2] << " " << (coins[2] == 1 ? "dime" : "dimes") << endl;
if (coins[3] != 0) cout << coins[3] << " " << (coins[3] == 1 ? "nickel" : "nickels") << endl;
if (coins[4] != 0) cout << coins[4] << " " << (coins[4] == 1 ? "penny" : "pennies") << endl;
}
return 0;
}
Answer:
The term "<u>green"</u> describes initiatives and products that preserve the environment
Explanation:
In order to preserve the environment the Environmental Protection Agency has provides tips for "Being Green on the Road", which highlights the topics including, Green Vehicle Guides, guides for Fuel Economy, guides for Clean Diesel and many more ways our environmental footprint can be reduced
A green economy is an economy that focuses on the reduction of risk of economic activity on the environment, such as the reduction of carbon emission and reduction in environmental pollution, biodiversity loss prevention, and promotes a sustainable development
A green tech aims to protect the environment and to reverse previous damage done to the environment, including technology for clean energy, water purification, and waste recycling.
Salamanders live in or near water, or find shelter on moist ground and are typically found in brooks, creeks, ponds, and other moist locations