Types of Programming Languages!

Programs are developed with programming languages. In the field of programming, many programming languages have emerged to create a different kind of programs for different platforms.

Some of the examples of programming languages are:
  • Java
  • C programming language
  • C++
  • Python
  • Ruby and many more.

programming is mainly categorized in two ways:
  1. Structured programming
  2. Object-Oriented programming (OOP)
Structured Programming

Structures Programming is a programming paradigm aimed at improving the clarity, quality
and development time of a computer program by making extensive use of subroutine, block,
structures, for and while-loop in contrast to using simple tests and jumps such as the go-to statement, which could lead to"Spaghetti code" that is difficult to follow and maintain.

Object-Oriented Programming

Object-Oriented Programming(OOP) is a programming paradigm based on the concept of "objects",
which may contain data, in the of fields, often known as attributes, and code in the form of procedures, often known as methods. A feature of objects is that an object's procedures can access and often modify the data fields of the object with which they are associated. In OOP, computer programs are designed by making them out of objects that interact with one another. there is a significant diversity of OOP languages, but the most popular ones are class-based, meaning that objects are instances of classes, which typically also determine their type.

Every programming language has different functioning methods and different programming languages provide the ability to the programmer to create a program as per his/her desired way.

Comments