Answer:
She would have saved 14 dollars more
Step-by-step explanation:
Hope this helps and plz mark brainliest :)
Answer:

Step-by-step explanation:
Given a ΔLMN.
Line LN is extended to point O.
such that:

and

To find:

Solution:
Kindly refer to the attached image for the given triangle and dimensions of angles.
Let us recall the external angle property of a triangle:
The external angle of a triangle is equal to the sum of two opposite internal angles.
i.e.

Putting the value of
in
.

Answer:
Length of the ladder used by worker = 17 feet
Step-by-step explanation:
Given:
Height of the window from the ground = 13 ft
Distance of fence from the building = 3 ft
Distance of ladder from the building = (3+8) = 11 ft
We have to find the length of the ladder.
Let the length of the ladder be 'x'
From the diagram we can also say that 'x' is the hypotenuse of the right angled triangle.
Using Pythagoras formula:
⇒ 
Here base length = 11 ft
Perpendicular = 13 ft
Plugging the values:
⇒
⇒ 
⇒ 
⇒
feet
The length of the ladder = 17 feet to its nearest tenth.
<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:
A
Step-by-step explanation: