Hey there, 29levelupchaye2!
Angles B and G are congruent because they are alternate interior angles since they are in between two parallel lines.
Angles ACB and HFG are congruent because they are alternate exterior angles since they are both outside two parallel lines cut by a transversal.
Thank you for using Brainly.
See you soon!
ok so F (0) should be equaled to = 0
Answer:
4 < w
8 > w
The greater than sign would have a line under it.
Step-by-step explanation:
<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>
The answer would be true.