C

C Language was developed by Dennis M. Ritchie at Bell Laboratories

C Language is general-purpose, procedural, imperative computer programming language.

                #include < stdio.h >
                int main() {
                // printf() displays the string inside quotation
                printf("Hello, World!");
                return 0;
                }
C++

C++ Language was developed by Bjarne Strousturp, as an extension to the C language.

C++ gives programmers a high level of control over system resources and memory


                #include < iostream >
                int main() {
                    std::cout << "Hello World!";
                    return 0;
                }
Java

Java Language was originally developed by James Gosling at Sun Microsystems

Java is a class-based, object-oriented programming language, general-purpose programming language intended to let application developers "Write Once, Run Anywhere"

               class HelloWorld {
                    public static void main(String[] args) {
                        System.out.println("Hello, World!"); 
                    }
                }
Python

Python Language was developed by Guido Van Rossum at Centrum Wiskunde & Informatica(CWI)

Python is an Interpreted high-level general purpose, Object Oriented, dynamically-typed, Garbage-Collected programming language.


                print("Hello World")
            
Javascript

The first ever Javascript was created by Brenden Eich at Netscape.

Javascript is high-level,often just-in-time complied and multi-paradigm. It has curly-bracket syntax, dynamic typing, prototype-based object-orientation and first-class funtions.


                console.log("Hello World")