Answer:
or 
Step-by-step explanation:
we have

Group terms that contain the same variable, and move the constant to the opposite side of the equation

Complete the square. Remember to balance the equation by adding the same constants to each side


Rewrite as perfect squares



Answer:
$1,800.
Step-by-step explanation:
15 x 15 = 225
225 x 8 = 1800
Feel free to let me know if you need more help! :)
Answer: 665.68 ft
Step-by-step explanation:
You‘re trying to find the circumference of the Ferris wheel. The formula for circumference is C=3.14(approximation for pi)x the diameter. So you would do 3.14 x 212 = 665.68
-20+1= -19
-19/2= -9.5
Check:
-9.5x2= -19
-19-1= -20
<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>