Answer:
Breadth = 15 cm
Step-by-step explanation:
Area = length x breadth
315 = 21 x breadth
[ dividing both sides by 21 ]

Answer:
C. Subtraction property of equality
Step-by-step explanation:
Answer:
length of side of square = (4x - 5) inches
Step-by-step explanation:
We are given;
Area of square = 16x² – 40x + 25
Let's find the roots of this quadratic equation [-b ± √(b² - 4ac)]/2a
Thus;
x = [-(-40) ± √((-40)² - 4(16 × 25)]/(2×16)
x = [40 ± √(1600 - 1600)]/32
x = (40 ± 0)/32
x = 40/32
x = 5/4
Thus, the factors of the polynomial are;
(4x - 5)²
So,
Area = 16x² – 40x + 25 = (4x - 5)²
Since, the right hand side is (4x - 5)² and area of square is (length of side)², thus we can say that length of side of square is (4x - 5) inches
<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>
Original price is $150 so you times 150 by 0.40
150 x 0.40 = 60
So you take the $150 and you subtract $60 from $150
150 - 60 = 90
So the answer is $90