150x4 is 600 volume for the answer
I cant really show you how to graph this but i can try to explain it. you would make a 4 quadrant graph and do rise over run.
1)start by making the graph
2) on the line of the graph marked Y is where you would put -4
3) From -4, you would go up (rise) by 2 and go over to the right 1 where you end is the slop
<span>#include <iostream>
using namespace std;
class InventoryTag {
public:
InventoryTag();
int getQuantityRemaining() const;
void addInventory(int numItems);
private:
int quantityRemaining;
};
InventoryTag::InventoryTag() {
quantityRemaining = 0;
}
int InventoryTag::getQuantityRemaining() const {
return quantityRemaining;
}
void InventoryTag::addInventory(int numItems) {
if (numItems > 10) {
quantityRemaining = quantityRemaining + numItems;
}
}
int main() {
InventoryTag redSweater;
int sweaterShipment = 0;
int sweaterInventoryBefore = 0;
sweaterInventoryBefore = redSweater.getQuantityRemaining();
sweaterShipment = 25;
cout << "Beginning tests." << endl;
// FIXME add unit test for addInventory
/* Your solution goes here */
cout << "Tests complete." << endl;
return 0;
}</span>
The variable <em>x </em>is equal to 0.5
Answer:
163
Step-by-step explanation: