News

1) abstract abstract keyword is used to implement the abstraction in java. A method which doesn’t have method definition must be declared as abstract and the class containing it must be declared as ...
In Java, we use the final keyword to prevent some classes from being extended. Simply prefix a class header with final, as in final class Password.