Answer:
5.401×10^-1
Step-by-step explanation:
You move the decimal over one to get5.401×10^−1
It depends on what the question looks like. If it looks like this:
(6-3)(2/5)=
(3)(0.4)=
1.2
Answer:
>
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:
1985 cubic units (written as un. with the cubed exponent)
Step-by-step explanation:
First, you find the volume of the cylinder
Here's the formula:

Now, you plug in and solve.

Then, you find the volume of the dome.
Here's the formula:

Now, you just plug in and solve.

Finally, you add them together, and there's your answer!

Hope this helped!
<em>brainliest?</em>