1) What is Procedural Oriented Programming Language? Examples.
Answer: Procedural Programming can be defined as a programming model which is derived from structured programming, based upon the concept of calling procedure. Procedures, also known as routines, subroutines or functions, simply consist of a series of computational steps to be carried out.
Examples: ALGOL, COBOL, BASIC, PASCAL, FORTRAN, and C.
2) limitation of Procedural Oriented Programming Language?
Answer: Two limitations of procedure oriented programming approach are: No restriction on data values. No reusability concept hence time management, testing and length of the program increases.
3) what is Object Oriented Programming Language? Example.
Answer: Object Oriented programming (OOP) is a programming paradigm that relies on the concept of classes and objects. It is used to structure a software program into simple, reusable pieces of code blueprints (usually called classes), which are used to create individual instances of objects.
Examples:Java, Python, C++, Lisp, and Perl are all examples of popular object-oriented programming languages.
0 Comments