If this is a true or false question, it’s false because 2/10 + 7 ≠ 10. the correct inequality would be 2/10 + 7 = 12.
%66.666
Because 4/6 times it will be that which is %66.666
<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>
[Content Deleted] Sorry! Brainly.com has deleted this person's answer!
The complete proof for the given parallelogram is given in the image attached below.
<h3>What is a Parallelogram?</h3>
A parallelogram is a quadrilateral whose opposite sides are parallel and also congruent to each other.
The complete proof would be as shown below:
1. ABCD is a parallelogram [given]
2. AB║CD [Definition of parallelogram]
3. ∠1 ≅ ∠2, ∠3 ≅ ∠4 [alternate interior angles theorem]
4. AB ≅ CD [Definition of parallelogram]
5. ΔABE ≅ ΔCDE [ASA]
6. AE ≅ CE, BE ≅ DE [CPCTC]
7. AC and BD bisects each other at E [definition of segment bisector]
Learn more about parallelogram on:
brainly.com/question/3050890
#SPJ1