Answer: VW= 23
Step-by-step explanation:
Because UV = UX the bisector has to split it evenly therefor WX = VW
So the answer is 23! Does this make sense?
Answer:
80
Step-by-step explanation:Solution:
step 1 Address the formula, input parameters & values.
Input parameters & values:
The given numbers are 78 & 80
step 2 Find the sum of the given two numbers.
sum = 78 + 80 = 158
step 3 Divide the sum by 2 to get the average.
average = 158/2
= 79
Thus, 79 is an average of positive integers 78 and 80.
Answer:
31q+15
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>
Answer:
A. 605 mL of the 35% solution
B. 55 mL of the 95% solution
Step-by-step explanation:
It is given that, you need 660 mL of a 40% alcohol solution. On hand, you have 35% alcohol mixture. You also have a 95% alcohol mixture.
Let x and y be the amount of 35% alcohol solution and 95% alcohol solution (in mL) respectively.
So,
Amount equation:
...(1)
Alcohol equation :
...(2)
On solving (1) and (2), we get
Now, substitute y=55 in (1).
Therefore, we need 605 mL of the 35% solution and 55 mL of the 95% solution.