Interfaces can be extremely helpful in many cases. For example, say you had a list of animals and you wanted to loop through the list, each printing the sound they make.
{cat, dog, bird}
One way to do this would be to use interfaces. This would allow for the same method to be called on all of th...