Skip to main content

Posts

Showing posts from February, 2020

Object Oriented Programming vs Procedure Oriented Programming

      Hello guys! In the last blog we saw the basics of programming and we even discussed about the approaches of programming. These types are known as paradigm. Let us see the advantages and disadvantages of different paradigm of programming.       Every paradigm has its own advantages and disadvantages.       The first paradigm of programming is ‘Procedure Oriented Programming”. It was in use since the early age of programming. It focuses on procedure of the programming and in which order the instructions should be carried out.       Advantages: 1.        It is relatively simple, and easy for implementation of compilers and interpreters. 2.        We can re-use pieces of code in a program without writing them again, by the virtue of method calling. 3.        In Procedure Oriented Programming it is easier to kee...

INTRODUCTION TO PROGRAMMING

      In this global era of 21 st century, the transformation from manual labor to automated machinery has increased drastically. Almost all our tasks are being successfully performed using machines. This has given us various advantages as reducing manual labor and saving our precious time.   Along with these advantages, it provides a higher end on our comfort level. The technological advances are accelerated due to use of updated computers and mobile applications.              What is behind these computers and applications? Yes, you guessed it right. It is Programming. Computer Programming is defined as “the process of designing and building an executable computer program to accomplish a specific computing result.” In simple words, given a specific input the desired output is obtained with the help of a program or code.   There are two approaches of programming:          Procedure Orien...