Answer:
True
Explanation:
Coding is a language because it takes time and practice to learn and do it. If you don't practice it, you could put the wrong thing into code and have everything go bonkers.
Hope this helps!! :)
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:
1. Low power hand tools/small
2. Light to medium industrial tools
3. Large industrial tools
There are definitely a lot more categories than three, but this is what I have.
Answer:
poka-yoke
Explanation:
The term 'poka-yoke' derives its meaning from Japanese language. In Japanese 'poke' means "mistakes" and 'yokeru' means " to avoid ". This ' poka yoke' means to avoid mistakes.
In any process, it is a mechanism that that helps an operator of any equipment to avoid any kind of mistakes while working. It is to prevent the defects in the products by correcting, addressing and preventing any human errors.
It is failsafing which eliminates any kind of potential errors in a process.