aiguillen8594 aiguillen8594 17-01-2024 Computers and Technology contestada 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()