Answer:
its C
Step-by-step explanation:
because 180⁰-40⁰=140⁰
Answer:
a1 = 6 and an = an-1 - 5
a2 = a2-1 - 5 = a1 - 5 = 1
a3 = a3-1 - 5 = a2 - 5 = -4, etc
Step-by-step explanation:
<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>
Hello:
(5x^3)(2x)^3 = (5x^3)(2)^3(x)^3 = <span>(5x^3)8x^3=40x^6 ... (answer C)</span>
Answer:
22, Twenty Two
Step-by-step explanation:
A good way to look at multiplying 11 is that the number, if it’s under 10, will then be two of that number. For instance, 4 x 11 = 44, 6 x 11 = 66, and so on and so forth.
Hope This Helped!