Lets following are the class definition
class A
   def a; end
end
module B
   def b; end
end
class C < A
   include B
   def c; end
end
What are the instance methods of C?
C.instance_methods # [:c, :b, :a, :to_json, :instance_of?...]
What are the instance methods that declare...