Jason will be 36 and joan will be 27 years old.
Answer:
P value is 0.1932
conclusion is that find value P greater than hypothesis test at the 0.05 level
Step-by-step explanation:
Given data
registered organ donors P = 40%
sample n = 200
registered organ donors x = 74
hypothesis test α = 0.05
to find out
P-value and state a conclusion
solution
we take a trail p less than 40 % i.e 0.40
so p = x/n
p = 74 / 200 = 0.37
so we find here Z value i.e
Z = p - P / √(PQ/n)
here Q = 1-p = 1-0.40 = 0.60
so Z = 0.37 - 0.40 / √(0.40×0.60/200)
Z = - 0.866
so p value for Z (-0.866) from z table
P value is 0.1932
and conclusion is that find value P greater than hypothesis test at the 0.05 level
<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:
6370.63 is the volume
Step-by-step explanation:
V=4
3πr3=4
3·π·11.53≈6370.6263