The answer to this question is D
Answer:
13 3/4
Step-by-step explanation:
2 3/4 is 11/4 when converted into an improper fraction.
5 is 5/1 when converted into a fraction.
11*5 is 55 (numerators)
4*1 is 4 (denominators)
55/4 is 13 with 3/4 remaining
13 3/4
3x- 11 +59 = 90
3x + 48 = 90
3x +48-48 =90-48
3x = 42
3x/3 = 42/3
x= 14
<MNQ = 3x -11
<MNQ = 3(14)-11
<MNQ = 42-11
<MNQ = 31
Answer:
d=0.031746
Step-by-step explanation:
1. Add 4d to both sides: 3.2=2.3d+3+4d
2. Simplify 2.3d +3+ 4d to 6.3d+3: 3.2=6.3d+3
3. Subtract 3 from both sides: 3.2-3=6.3d
4. Simplify 3.2-3 to 0.2: 0.2-6.3d
5. Divide both sides by 6.3: 0.2/6.3=d
6. Simplify 0.2/6.3 to 0.031746: 0.031746=d
7. Switch sides: d=0.031746
Hope this helped!
<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>