Notice the use of the@Overrideannotation in our example. In Java, annotations are the metadata that we used to provide information to the compiler. Here, the@Overrideannotation specifies the compiler that the method after this annotation overrides the method of the superclass. It is not mandatory...