Answer:
AA similarity
Step-by-step explanation:
Using angle sum theorem, you can clearly find out the missing angles on the left and right triangles are 40° and 50° respectively.
Therefore, by using any two angles in the triangles, you can prove they are similar by AA similarity.
Answer:
x intercept = 15 # of cars to detail if no SUVs
y intercept = 10 # of SUVs to detail if no cars
Hope this helps!
For this case we propose a system of equations:
x: Let the variable representing the quantity of Granny Smith apples
y: Let the variable representing the number of Gala apples
According to the statement we have:

From the first equation we have to:

replacing in the second equation:

So, Carl bought 7 Gala apples
On the other hand:

So, Carl bought 12 Granny Smith apples
Answer:
Carl bought 7 Gala apples and 12 Granny Smith apples
<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 net with a square base and 4 triangular side
Step-by-step explanation: