We have this equation for the slope is: y=mx+b which m is the slope and b is the y-intercept, so we have y=20-15x or y=-15x+20, and we already know that the slope is -15 and y-intercept is 20. As a result, the student's error is that he thinks that 20 is the slope because it is the first number. Hope it help!
Answer:
10w^2 + 24w + 13
Step-by-step explanation:
use Foil method
Answer:
1.5 bananas.
Step-by-step explanation:
1.5 x 2 = 3
Answer:
Step-by-step explanation:
x = 72°
y = 61°
<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>