OOPs concept in java
The full form of OOPs is Object Oriented Programming System. Objects means the real word entity such as table,chair,blackboard etc. Object Oriented Programming is a methodology to design a program using class and objects . The object oriented paradigm supports the following principles. Class : A class is a template for creating different objects which defines its properties and behaviors. A class can contain fields and methods to describe the behavior of an object. Example : public class First { ...