Answer:
D x^2 smaller than or equal 4
Step-by-step explanation:
if you tried to get a number on the number line and put it to fit in the equation it will just end to equal or smaller than 4
Answer:
A= take away 3 b=??
Step-by-step explanation:
Answer:
13.
parallel: y = 1/3x -3
perpendicular: y = -3x - 3
14.
parallel: y = 4x - 1/2
perpendicular: y = -1/4x - 1/2
15.
parallel: y = -2x + 4
perpendicular: y= 1/2x + 4
16.
parallel: y = -2x-2
perpendicular: y= 1/2x-2
17.
parallel: y = -2x+8
perpendicular: y= 1/2x + 8
Step-by-step explanation:
A perpendicular has a negative reciprocal slope and a parallel has the same slope
Answer:
-27
Step-by-step explanation:
-5-9=-14
-14-13=-27
<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>