Tag: object oriented programming

Home object oriented programming
Java Programming languages
Post

Member Data and Function

Member Data and Function Variables which are declared inside class are called data members Data members can be either private or public Similarly, functions declared inside class is called member function Data Member Variables are declared in class by using fundamental or derived data types. Thes are data members Fundamental data types are like int,...

What are the major features and important characteristics of JAVA Programming?
Post

What are the major features and important characteristics of JAVA Programming?

JAVA is one of the most popular programming languages. The important and major characteristics of Java that you need to know includes: Object-Oriented Everything in java is object-oriented Java is easy to extend by creating new class Platform Independent In a correctly implemented JAVA system, the same program can run in any device. Java runs...

Concept of Object Oriented PRogramming
Post

Concept of Object Oriented PRogramming

Introduction to Object-Oriented Programming In simple terms, an application is collection of objects which communicates each other. Real world entities like inheritance, polymorphism are aimed to implemented in object oriented programming. Almost every programmer have used OOP in their life. OOP is considered as the standard way to write a code. What is the main...