The answer would be 23 because the engines in a horse is a amount of 9 engines in 69 cars
The lightning efficiency based on the scenario depicted will be C. 56 lumens/Watt, more efficient.
<h3>How to calculate the lightning efficiency</h3>
The efficiency of the incandescent bulb will be:
= 450/40 = 11.25 lumens per watt.
The efficiency of the LED bulb will be:
= 450/8 = 56 lumens per watt.
In this case, the LED bulb is more efficient than the incandescent bulb.
Therefore, the lighting efficiency will be 56 lumens/Watt, more efficient
Learn more lightning efficiency on:
brainly.com/question/25927632
Answer:
(C) Buying and selling items electronically on the internet.
Explanation:
Electronic commerce or e-commerce (sometimes written as eCommerce) is a business model that lets firms and individuals buy and sell things over the internet. E-commerce operates in all four of the following major market segments: ... Business to consumer. Consumer to consumer. Consumer to business.
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;
}