Answer:
b. instance
Explanation:
Methods used with object instantiations are the instance methods. When a class is instantiated we get a reference to the object. Invoking a method on the object , executes the corresponding instance method.
For example:
String s = new String("test");
int len = s.length();
Here length() is an instance method of String object s.