KSKaram Srikanth Reddyinshreekanth.hashnode.dev·May 22, 2025 · 7 min readAbstraction in Java Object-Oriented ProgrammingAbstraction is one of the four fundamental pillars of Object-Oriented Programming (along with Encapsulation, Inheritance, and Polymorphism). It's the process of hiding implementation details while showing only essential features of an object to the u...00
KSKaram Srikanth Reddyinshreekanth.hashnode.dev·May 22, 2025 · 6 min readThe final Keyword in JavaThe final keyword in Java is a non-access modifier that provides restrictions on classes, methods, and variables. It's one of the most important keywords for controlling inheritance, method overriding, and variable reassignment. 1. final with Variabl...00
KSKaram Srikanth Reddyinshreekanth.hashnode.dev·May 22, 2025 · 26 min readJava 'static' Keyword - Complete GuideOverview The static keyword in Java belongs to the class rather than to any specific instance of the class. Static members (variables, methods, blocks, and nested classes) are shared among all instances of the class and can be accessed without creati...00
KSKaram Srikanth Reddyinshreekanth.hashnode.dev·Aug 14, 2024 · 1 min readBest Website to Learn Java for Free: #1 PickWorried about where to learn Java, that too for free?I have gone through various free resources available online to learn Java. But I have found one best website which stands out. It is Hyperskill - Java Developer Course. The Hyperskill is a learnin...00