Answer:
B
Step-by-step explanation
a squared plus b squared equals c squared.
16 plus 144 equal 160.
now square 160
*☆*――*☆*――*☆*――*☆*――*☆*――*☆*――*☆*――*☆**☆*――*☆*――*☆*――*☆
Answer: -756
I hope this helped!
<!> Brainliest is appreciated! <!>
- Zack Slocum
*☆*――*☆*――*☆*――*☆*――*☆*――*☆*――*☆*――*☆**☆*――*☆*――*☆*――*☆
To find the area of any regular (regular means all sides are = and all angles are =) poylgon when you know the length of the apothem and the length of the side you can use the formula:
A = (1/2)ap where a = the length of the apothem and p = the perimeter of the polygon. You can also use n*s in place of p where n = the number of sides of the polygon and s = the length of the side.
A= (1/2)(16)(19*8) (An octagon has 8 sides.)
A = 1216 in^2
The answer to this question is C.
<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>