The answer is 0.3413 because Explanation:
<span>z=<span><span>x−u</span>σ</span></span>, where <span>u=6 0andσ=10</span>.
Therefore the probability student finish the test between 50 to 60 minutes is,
<span>P<span>(50≤x≤60)</span>=P<span>(<span><span>50−60</span>10</span>≤z≤<span><span>60−60</span>10</span>)</span></span>
<span>P<span>(−1≤z≤0)</span>=P<span>(z≤0)</span>−P<span>(z≤−1)</span></span>
<span>=0.5000−0.1587=<span>0.3413</span></span>
<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/2
Step-by-step explanation:
using the slope formula 3-(-2)/-4-6=-1/2
The distance between these points is (4,7) and (3,-7)