The answer is True. In geometry, perpendicular lines are defined as two lines that meet or intersect each other at right angles (90°).
<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:
2.4 hr. = time working together
Step-by-step explanation:
Let x = time working together
x/6 = work done by Martin
x/4 = work done by Victor
Martin's part + Victor's part = 1 jog done
x/6 + x/4 = 1 Multiply thru by 12
2x + 3x = 12
5x = 12
x = 2.4 hr.
Answer:
Step-by-step explanation:
x and y are supplementary angles, so their sum is 180°.
x+y = 180°
x is 16° less than three times y
x = 3y - 16°
(3y-16°) + y = 180°
4y = 196°
y = 49°
x = 3y-16° = 131°