Answer:
A=23512.32
Step-by-step explanation:
The equation for the area of a cylinder is A=2πrh+2πr^2
If we substitute the radius and height, the equation would be A=2π(60)(2.4)+2π(60)^2
π can be shortened to 3.14 so it's A=2(3.14)(60)(2.4)+2(3.14)(60)^2
We're left with 904.32+22608
So the answer is 23512.32
Answer:
d + 24 = 55
Step-by-step explanation:
hope this helps have a great day
Answer:
the answer is 2 you add one and the other one and it makes 2
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>
Answer: 1/20
Step-by-step explanation:
you need to find a common denominator (least common multiple of both denominators)
4/5 - 3/4
16/20 - 15/20
1/20