Matching Pairs MethodsOnline version Java Concepts, Terms and Definitions by steve finch 1 Static keyword 2 Overload 3 Method signature 4 Parameters 5 Keyword final 6 Method body 7 Override Method name + parameter list Placeholders for values that will be “passed in” as data for the method to work on the same method name can be defined with more than one signature allows a subclass or child class to provide a specific implementation of a method that is already provided by one of its superclasses or parent classes. Code block for the method Cannot be overridden by subclasses - associated with the class and not with any particular instantiation of the class - can be accessed without creating an instance of the class