Respuesta :

Objects in object-oriented programming are simply the components of a program.

The behavior of objects are defined by (c) Method

Methods are simply functions and subroutines, and they are used to define the behavior of objects.

Take for instance, the following method:

public static int Fibonacci(int i){

........

....

return i;

}

The above code segment creates a method named Fibonacci of integer type.

This means that, the return value of the object whose behavior is defined by the Fibonacci method is also integer.

Read more about methods and objects at:

https://brainly.com/question/13545374