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;
}
- Procedural Language
- Fast and Efficient
- Modularity
- Statically Type
- Speed
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;
}
- Object Oriented Programming
- Compiler Based
- Dynamic Memory Allocation
- Existense of Libraries
- Speed
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!");
}
}
- Object Oriented Programming
- Architectural Neutral
- Robust
- Secured
- Platform Independent
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")
- Easy to Code
- Free and Open Source
- Object-Oriented Programming Language
- GUI Programming Support
- High Level Language
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")
- Light Weight Scripting Language
- Dynamic Typing
- Object-Oriented Programming Support
- Platform Independent
- Async Processing