Answer:
Option F
Step-by-step explanation:
Let the number be n.
Sum of a number and 5 is n + 5.
Sum of a number and five divided by fifteen is
( n + 5 ) / 15
Answer:
⦿ (7, 2)
Step-by-step explanation:
Try each solution in both inequalities and see which solution makes both inequalities true.
4x + 2y > 8
x - y ≥ 2
A. (2, 4)
4(2) + 2(4) > 8
16 > 8 True
2 - 4 ≥ 2
-2 ≥ 2 False
B. (4, 0)
4(-4) + 2(0) > 8
-16 > 8 False
C. (7, 2)
4(7) + 2(2) > 8
32 > 8 True
7 - 2 ≥ 2
5 ≥ 2 True
D. (1, -3)
4(1) + 2(-3) > 8
-2 > 8 False
Answer: C.
Answer:
y =
x - 5
Step-by-step explanation:
The equation of a line in slope- intercept form is
y = mx + c ( m is the slope and c the y- intercept )
Calculate m using the slope formula
m = (y₂ - y₁ ) / (x₂ - x₁ )
with (x₁, y₁ ) =( 8, - 3) and (x₂, y₂ ) = (0, - 5)
m =
=
= 
Note the line crosses the y- axis at (0, - 5 ) ⇒ c = - 5
y =
x - 5 ← equation of line
<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>