Answer:
not really what unit test or topic is that ?
Answer:
x =(4-√40)/6=(2-√ 10 )/3= -0.387
x =(4+√40)/6=(2+√ 10 )/3= 1.721
Step-by-step explanation: Hope this helped!!!
plz give me brainliest!! thxxx
Answer with factoring: 2(3y+4)
Answer with simplifying: 6y+8
<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:
see the explanation
Step-by-step explanation:
<u><em>The complete question is</em></u>
The first three steps of completing the square to solve the quadratic equation x2 +4x -6= 0, are shown below.
Step 1: x2 +4x= 6
Step 2: x2 +4x+4=6+4
Step 3: (x +2)^2=10
What are the next 3 steps?
we have
step 4
Take square root both sides

step 5
Simplify

step 6
Solve for x
subtract 2 both sides


