Answer:
Step-by-step explanation:
Similar figures have the same shape but the same size.
Moving from left to right:
The first figure is similar because the ratio is 6:14 which is the same as the figure 3:7.
The second figure is not similar because of shape
The third figure is is not similar because the ratio is 6:12 which is not the same as the figure 3:7
The fourth figure is similar because it is rotated
The fifth figure is not similar because of shape
The sixth figure is not similar because of the ratio of 2:3.5 which is not the same as the figure's ratio of 3:7
Answer:
r = 13
Step-by-step explanation:
these angles are vertical and are congruent
8r + 6 = 9r - 7
6 = r - 7
13 = r
Answer:
d.
Step-by-step explanation:
Left line is defined when x < 1 (x is less than 1). The point is not full and that means that x = 1 is not included.
Right line is defined when x is greater or equal to one x ≥ 1.
Options that have x < 1 and x ≥ 1 are b and d, so the answer is one of those.
Equations of the lines are in slope-intercept form y = mx + b, where m is slope and b is y-intercept.
Right line has steeper slope than left line, so the slope of right line will have bigger absolute value. That is the case with option d. (Left line has slope -1 and right one has slope -2, absolute value of right slope is bigger.)
You could also check with y-intercepts. Left line has y-intercept at y = 2 and left line is defined when x < 1. Only option d meets these conditions.
<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>