LeetCode #1 Two SumGiven an array of integers nums and an integer target, return indices of the two numbers such that they add up to target.Apr 23, 2023Apr 23, 2023
JAVA #11 -PackagesIn Java, packages are used to group related classes and interfaces together. They provide a way to organize the code into logical units…Apr 19, 2023Apr 19, 2023
JAVA #10 -InterfacesIn Java, an interface is a blueprint of a class. It defines a set of methods that a class implementing the interface must implement. An…Apr 19, 2023Apr 19, 2023
JAVA #9 -ObjectsIn Java, an object is an instance of a class that encapsulates data and provides methods to interact with that data. A class is a blueprint…Apr 16, 2023Apr 16, 2023
JAVA #8 -ClassIn Java, a class is a blueprint or a template for creating objects. It defines the properties and behavior of objects of a particular type…Apr 16, 2023Apr 16, 2023
JAVA #7 -AbstractionAbstraction is the concept of hiding the implementation details of a system and exposing only the necessary details to the user. In Java…Apr 16, 2023Apr 16, 2023
JAVA #6 -PolymorphismPolymorphism is the ability of an object to take on many forms. In Java, polymorphism can be achieved through method overloading and method…Apr 16, 2023Apr 16, 2023
JAVA #5 -InheritanceInheritance is a mechanism in object-oriented programming that allows one class to inherit the properties and methods of another class. The…Apr 16, 2023Apr 16, 2023
JAVA #4 -EncapsulationEncapsulation is a programming concept that refers to bundling data and methods that operate on that data, into a single unit called a…Apr 16, 2023Apr 16, 2023
JAVA #3 — OOPS ConceptsObject-Oriented Programming (OOP) is a programming paradigm that focuses on organizing software into a set of objects that interact with…Apr 12, 2023Apr 12, 2023