Multiple choice technology programming languages Identify the correct syntax for instantiating a class . testObj = CTest testObj = CTest() CTest testObj = CTest() testObj = new CTest() Reveal answer Fill a bubble to check yourself B Correct answer Explanation Python instantiates classes using callable syntax: object_name = ClassName(). The parentheses are required to invoke the class constructor and create a new instance.