

InterviewSolution
Saved Bookmarks
1. |
Solve the quadratic equation.x2 + 6x + 5 = 0 |
Answer» x2 + 6x + 5 = 0 x2 + x + 5x + 5 = 0 x(x + 1) + 5(x + 1) = 0 (x + 5)(x + 1) = 0 either x +5 = 0 or x + 1 = 0 x = -5 or -1 |
|