

multiply both sides by .4 to isolate the x variable.

x = 1.6
<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>
Answer:
C is the closest.,
Step-by-step explanation:
I am assuming that the 2 trapezoids CBEF and EFDA are similar (they are similar if the 3 horizontal lines are parallel).
Corresponding sides are in the same ratio , so:
3.4 / EF = EF / 7.6
EF^2 = 3.4 * 7.6 = 25.84
EF = 5.08
Answer:
She bought 32 ounces of dough.
Step-by-step explanation:
1 pound = 16 ounces
16*2= 32