Given the following constructor, identify the correct way(s) to instantiate an object. Class student: def __init__
1) student = student()
2) student = student.__init__()
3) student = student.__init__
4) student = student()