Posts

Showing posts with the label Pillars of Java

Basic pillars of java

Image
  BASIC PILLARS OF JAVA   š Procedure Oriented Programming (POP):   In this programming approach many instructions are written to carry out the task. These instructions are grouped together to form functions. Emphasis is on the functions rather than data items. š Characteristics of POP : The characteristics of POP approach are as follows:- 1.       Emphasis on functions. 2.       Functions share global data. 3.       Data values can keep floating from one function to another. 4.       Use top to down approach programming. š Drawbacks of POP : The drawbacks of POP approach are as follows:-   1.       It is not suitable to share complex problems. 2.       It is not applicable in real situations. 3.       As data values shares global data, we may require to make neces...