Problem:
Question 1- What happens if you do not write a constructor method for a class?
Question 2- Do the following two methods have the same signature or different signatures?
public int methodA(int x)
public float methodA(int y)
Question 3- Do the following two methods have the same signature or different signatures?
public float methodA(int x, float y)
public float methodA(int y)
Please explain in detail what happens when we do not write a constructor method for a class.