Question: What's the difference between `.equals` and `==`?
- They do the exact same thing
- `==` won't work on objects
- `==` cannot be applied to `String`
- `==` is a wrapper of `.equals()` and checks for nulls
Answer: The correct answer of the above question is Option D:`==` is a wrapper of `.equals()` and checks for nulls