Within a constructor, which syntax correctly assigns a value to an instance variable?
field = value;
self.field = value;
obj.field = value;
this.field = value;

Object-Oriented Programming Exercises are loading ...