Answer:
27 years
Step-by-step explanation:
P is measured in thosands therefore, P will have a value of 120
so it would be...
120=80e^0.015t
80e^0.015t=120
e^0.015t=120/80=3/2=1.5
e^0.015t=1.5
0.015t= In(1.5)
t=In(1.5)/0.015
∴ t≈27.03 round it to 27 years
It would be greatly appreciated if you gave me the brainlest
The app will only let me give one photo at a time, so here's part 1.
<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:
ANSWER:D
Step-by-step explanation:
Sana maka help