Q1. How does self work, and what is the difference between class and instance methods?
`self` is the current object. Inside an instance method it is the receiver, inside a class body it is the class, and inside a class method it is the class as well. ```rub...