Question: 
Write a python function to check whether the roots of a quadratic equation are numerically equal but opposite in sign or not.


Model's Code:
def Check_Solution(a, b, c):
    if b**2 - 4*a*c == 0:
        return "Yes" if a * c < 0 else "No"
    return "No"



Sample Correct Code:
def Check_Solution(a,b,c):  
    if b == 0:  
        return ("Yes")  
    else: 
        return ("No")  


Asserts:
assert Check_Solution(2,0,-1) == "Yes"
assert Check_Solution(1,-5,6) == "No"
assert Check_Solution(2,0,2) == "Yes"


Tests:
Test 1 of 3: FAIL: AssertionError()

Test 840 of 974: 644/840 (76.66666666666667%): failed