Is Java Finally Dead? ☠️If you still think Java is the same language you learned a decade ago, you are already behind.May 14, 2026·23 min read
Static Keyword in JavaIn Java, the static keyword is used to declare members (variables and methods) that belong to the class itself, rather than to any specific instance of the class. When a member is declared as static, it means that the member is shared among all insta...Jun 12, 2023·3 min read
Object-Oriented Programming (OOPs)OOPS stands for Object-Oriented Programming. It is a programming paradigm that uses "objects" to design software. An object is a data structure that encapsulates both data and behaviour. The data is stored in fields, and the behaviour is implemented ...Jun 12, 2023·2 min read
Classes and ObjectsClass A class is a blueprint or a template for creating objects. It defines the structure and behaviour of objects that can be created based on it. A class acts as a container for related data (variables) and functions (methods) that operate on th...Jun 11, 2023·9 min read
Algorithms ✨What is an Algorithm? 🤔 An algorithm is a set of clear and specific steps that can be used to solve a particular problem. It provides a systematic approach to solving problems, and the steps are easy to understand and follow. The goal of an algorith...Feb 21, 2023·4 min read