They are similar , scale factor is 3
These are false. Tami will need to work 11 weeks to get to her goal. To find out this problem, first take out the 100 from the 320 which then gives you 220. Then divide 220 by 20 which gives you 11. 1 is wrong because Tami does not have to work more than 21 weeks to get to her goal. 2 is also wrong because Tami does not need to save more that 11 weeks to get to her goal, she has to work 11 weeks only.
Answer:
The length of each side is 4 m
Step-by-step explanation:
The volume of a cube is given by
V = s^3 where s is the side length
64 = s^3
Take the cube root of each side
64 ^ (1/3) = s^3 ^ (1/3)
4 = s
The length of each side is 4 m
Answer:
h =
- r
Step-by-step explanation:
The question requires you to make h the subject of the formula.
S = 2πrh + 2πr²
subtract 2πr² on both sides.
S - 2πr² = 2πrh - 2πr² - 2πr²
S - 2πr² = 2πrh
Dividing both sides by 2πr
(S - 2πr²)/2πr = 2πrh/ 2πr
h =
- r
<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>