

InterviewSolution
Saved Bookmarks
1. |
Find a quadratic polynomial, the sum and product of whose zeroes are 0 and 3 respectively. |
Answer» Given: Sum of zeroes = α + β = 0 Product of zeroes = αβ = 3 Then, the quadratic polynomial = x2 – (sum of zeroes)x + product of zeroes = x2 – (0)x + 3 = x2 + 3 |
|