i am pretty sure it is -2/25, 14/40, 7
Step-by-step explanation:
Answer:
7.45
Step-by-step explanation:
We are given a right triangle with one side length known and an angle know so we can use some trigonometry.
You need to find the hypotenuse so you are going to use either sine or cosine.
Since the adjacent from the angle is given (SOH-CAH-TOA) we can use cosine so,
cos(20) = 7/h
=>h = 7/cos(20)
=> 7.44924
=> 7.45
<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>
Answer:
no
Step-by-step explanation:
4x -3 = 16
x=19/4
4(x-3) = 16: Distribute the number in the parenthesis with 4 and you get:
4x-12=16
x=7
4x-12=16 is not the same as 4x-3=16
Therefore they do not have the same solution.
Answer:
As shown in the attachment,
Step-by-step explanation: