I do not want my class to be inherited by any other class. What should i do?
Correct Answer
You should declared your class as final But you can't define your class as final, if it is an abstract class A class declared as final can't be extended by any other class
Technology problems
Search Results
1. What is the purpose of declaring a variable as final?
Correct Answer: final is a modifier which can be applied to a class or a method or a variable final class can't be inherited, final method can't be overridden and final variable can't be changed finally is an exception handling code section which gets executed whether an exception is raised or not by the try block code segment finalize() is a method of Object class which will be executed by the JVM just before garbage collecting object to give a final chance for resource releasing activity
8. Which king class properly represents the relationship "King has a best friend who is a Soldier"?
Correct Answer: class King { private Soldier bestFriend; }
9. How many of the following will follow JavaBean Listener naming rules? addListener addMouseListener deleteMouseListener removeMouseListener registerMouseListener