Final method is a method defined in the super class with final modifier We cannot overriding final method of super class in the sub class EX: Class Sample { final void funOne() { } void funTwo() { } } Class Sub extends Sample { void funOne() { // overriding is not allowed } viod funTwo() { //overriding is allowed } }
Technology problems
Search Results
1. What is the use of overloading ? or why overloading?
Correct Answer: - By using method overriding a sub class can change the definition of super class method - By using overriding a sub class can modify the functionality of the super class
3. If super class ref is pointing sub class object then by using super class ref is it possible to call sub class newly defined method?
Correct Answer: If constructor opens the file finalize() method closes that file If constructor opens the connection finalize() method closes that connection To perform finalization operation we must overriding finalize method
Correct Answer: If we print any object by using println() or print() methods The println() or print() methods internally calls tostring() method and prints the return value of toString() method