Object: The Cosmic Superclass
- All classes defined without an explicit extends clause automatically extend Object

- Most useful methods:
- String toString()
- boolean equals(Object otherObject)
- Object clone()
- Good idea to override these methods in your classes