The statics default_1, default_2 are used in one of the class Instructors methods, some_func(): class Instructor: # class ("static") intended constants default_1 "one" default_2= "two" def some func(self, name default_1, address default_2 ): Assume that the value of default_1 is changed during the program run by being assigned the string "NEW ONE". After that change, the client omits the arguments, during the call to some_func(), as in inst_object.some_func() What values will be assigned to the local parameters name and address when some_func() begins executing (as a result of this particular call, just described)? name "one", address="two" name="NEW ONE", address="two" name = "NEW ONE", address = "NEW TWO" name "one", address = "NEW ONE"