What is the interquartile range of this data set? 2,5,9,11,18,30,42,55,58,73,81
Tcecarenko [31]
Answer:
I think it's 49 I'm sry if I'm wrong hope you luck
Step-by-step explanation:
If (x-24)0.25 = 4, distribute 0.25 within the parenthesis.
0.25x - 6 = 4
0.25x = 10
Divide both sides by 0.25
x = 40
<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>
Y = 3x
so
if x = 5 then y = 15
if x = 10 then y = 30
so a = 10 and b = 15
answer is B. second choice
a = 10 and b = 15
Okay thanks I’ll try to help you