Answer:
the ratio is 1:7
so the answer is 7 gallons of white paint
Step-by-step explanation:
Hope this helps!!
Answer:
18
Step-by-step explanation:
Given that:
y∞ xz
y=kxz. Where k is constant
When z=196 and x= 2 then y= 7
7=(196)(2)k
7=392k
k=1/56
There fore y=(1/56)xz
When x=3 and z =336
y=(1/56)xz
y=(1/56)(336)(3)
y=18
80x5,000 is 400,000. Not sure what you're asking though.
Answer:
Yearly budget= $3840
Monthly budget= $320
Step-by-step explanation:
His budget will be calculated first by rounding off to the nearest$10 all his monthly spending.
For groceries= $176.47
Round off=$ 180.00
For phone =$ 78.66
Round off = $80.00
For gas = $62.37
Round off= $60.00
His total round off = $180+$80+$60
His total round off = $320
Before the round off, his total spending was $176.47+$78.66+$62.37
= $317.5
So his monthly budget should be $320
And yearly budget =$ 320*12
Yearly budget= $3840
<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>