OOPS concepts Overview

Let us understand OOPS Concepts and its importance in this article There are many popular programming languages like Java,c++,c# etc follow an Object Oriented Programming paradigm. Object Oriented Programming system(OOPS) is designed based on the concept of “Object”. “Object” contains both variables (used for holding the data) and methods(used for defining the behaviors) OOPS concept […]

Share this article on

Class and objects in Java

Let’s understand Class and objects in Java Class Class represents a real world entity which has both state and behavior which is applicable to all the objects of this Class. So Class is called as a blue print or a template using which each object will be created. Example: Create Student.java Class Student{ String id; […]

Share this article on