What is the difference between chaining and cascading?
Ans. In Chaining, one message can follow on after another. In this case the second message is sent to the object which is the result of the first message. anObject msg1 msg2 msg3 In Cascading, each message is followed by a semicolon (;) and another message. In Cascading, subsequent messages are sent to the first receiver.