Which of these statements create my_obj as an instance of MyClass?

my_obj = MyClass(var1, var2)class MyClass(my_obj):my_obj = new Object(MyClass)my_obj.MyClass()

Right on! We create an instance of MyClass by assigning the class with parentheses and, in this case, with attributes to my_object.

Yikes! We create an instance of MyClass by assigning the class with parentheses and, in this case, with attributes to my_object.