Answer: C. y + 4 = 1/2(x - 1)
Step-by-step explanation:
point slope form is y - y1 = m(x - x1) where m is the slope and (x1, y1) is a point on the line.
Answer:

Step-by-step explanation:
The midpoint of two points is the average of the x coordinates and the average of the y coordinates.
Given
A(3, -1)
and we let the other end point B be B(x,y)
and midpoint is (-7,10)
So, the average of 3 and x is -7, and
the average of -1 and y is 10
We can solve for x first:

and now solving for y:

So, the other point B is:

Answer:
c
Step-by-step explanation:
<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>