Answer:
Neither for 1
the second option for 2
Step-by-step explanation:
not sure how to explain this
Answer:
1 median=60.3
2 missing number=38
Step-by-step explanation:
1 45+55+76+y+88+54/6
316+y/6=63.6
316+x381.6
x=381.6-316=65.6
2M4 =63
60-62+92+x/4=63
214+x=252
x=252-214
=38
<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:
F. 300,000
Step-by-step explanation:
logically, it is decreasing by 1.
We simply replace a with -9
k(-9) = 4 * -9 - 4
k(-9) = -40
:)