Answer:
-64
Step-by-step explanation:
a(b - c)
a = -8
b = 12
c = 4
So, you'd plug in those numbers:
-8(12 - 4)
You'd start within the parenthesis's, so:
(12 - 4), which equals (8)
-8(8)
= -64
Answer:
270 s
Step-by-step explanation:
4 minutes = 240s
add the other 30s
boom
The answer is actually 80 degrees, I just took the test.
Volume of sphere = 4/3 x pi x r^3
Volume of large sphere:
4/3 x 3.14 x 14^3 = 11488.21 cubic cm
Volume of smaller sphere:
4/3 x 3.14 x 2^3 = 33.49 cubic cm
Number of small spheres = volume of large sphere/ volume of small sphere
11488.21 / 33.49 = 343.03
Round to 343 small spheres
<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>