Answer Posted / Jolly
Ruby uses dynamic method lookup where the method is resolved at runtime. It first checks for the method in the object's class, then in its parent classes (until Object), and if the method is not found, it raises NoMethodError.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers