Answer:1 is b and 2 is d
Step-by-step explanation:
(5x³ + 4x²) - (6x² - 2x - 9)
-1(6x²) -1(-2x) -1(-9) = -6x² + 2x + 9
5x³ + 4x² - 6x² + 2x + 9
5x³ - 2x² + 2x + 9 Choice D.
Answer:
C.
Step-by-step explanation:
I checked it and it’s right I hope this helps!!
Answer:
x=0, y=2. (0, 2).
Step-by-step explanation:
3x+2y=4
8x-3y=-6
---------------
3(3x+2y)=3(4)
2(8x-3y)=2(-6)
-----------------------
9x+6y=12
16x-6y=-12
----------------
25x=0
x=0/25
x=0
3(0)+2y=4
0+2y=4
2y=4-0
2y=4
y=4/2
y=2
<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>