Today we touched briefly upon the concept of interfaces and exceptions. Here is what we have learnt so far. InterfaceA special function that is hard to find in other languages except for Java. An interface is a completely abstract class that is used to group related methods with empty bodies.It can only contain abstract methods and constants (think static final).interface AAA{ public static fina..