HOW ARE PROGRAMMING LANGUAGES BUILT UPON

Creation of C language 

In 1972, a great computer scientist Dennis Ritchie created a new programming language called 'C' at the Bell Laboratories. It was created from 'ALGOL', 'BCPL' and 'B' programming languages.




Creation of javascript 

Javascript is just a standard, more formally known as ECMAScript. It can be implemented in any language, just like any standard. Chrome's Javascript engine, V8, is written in C++.





Creation of Python

Python written in the C programming language. It means that the Python interpreter is written in C. CPython is that Python implementation that is done in the C language.




Creation of PHP

PHP as it's known today is actually the successor to a product named PHP/FI. Created in 1994 by Rasmus Lerdorf, the very first incarnation of PHP was a simple set of Common Gateway Interface (CGI) binaries written in the C programming language.




Creation of dart

Dart descends from the ALGOL language family. Its members include C, Java, C#, JavaScript, and others.The Dart programming language is important for a few reasons: It has the best of both worlds: It's a compiled, type-safe language (like C# and Java) and a scripting language (like Python and JavaScript) at the same time. It transpiles to JavaScript for use as a web front end.




Creation of SQL

Originally based upon relational algebra and tuple relational calculus, SQL consists of many types of statements, which may be informally classed as sublanguages, commonly: a data query language (DQL), a data definition language (DDL), a data control language (DCL), and a data manipulation language (DML).The world's most popular databases, including Oracle Database, MySQL, MS SQL Server, and PostgreSQL, are coded in C (the first three of them actually both in C and C++).




Creation of Swift

Development of Swift started in July 2010 by Chris Lattner, with the eventual collaboration of many other programmers at Apple. Swift took language ideas "from Objective-C, Rust, Haskell, Ruby, Python, C#, CLU, and far too many others to list".




Creation of Rust

Rust is a modern computer programming language developed by Mozilla in 2010. It was initially developed to build high-programming applications without the issue of invalid memory access that developers were facing while using C and C++.




Creation of Scala

Scala uses Java Virtual Machine (JVM) to execute bytecode. Its code is compiled into bytecode and executed by Java Virtual Machine. So you need only JVM to start development with it. Scala can also use all java classes and allows us to create our custom class.



What is the language used for the creation of assembly language??

Assembly Language is the interface between higher level languages (C++, Java, etc) and machine code (binary). For a compiled language, the compiler transforms higher level code into assembly language code.

 1. Python - C


2. Java-C and C++


3. C# C and C++


4. Ruby - C


5. JavaScript - C and C++


6. Swift - C and Objective-C


7. Kotlin - Java


8. Go-C and C++


9. Rust-C


10. TypeScript - JavaScript


JAVA - 
The very first Java compiler was developed by Sun Microsystems and was written in C using some libraries from C++. Today, the Java compiler is written in Java, while the JRE is written in C.


PHP - 
PHP is written in the high-level C programming language.


C# - 
It is an object-oriented programming language created by Microsoft that runs on the .NET Framework. C# has roots from the C familyand the language is close to other popular languages like C++ and Java. The first version was released in year 2002. The latest version, C# 11, was released in November 2022.


C - 
In 1972, a great computer scientist Dennis Ritchie created a new programming language called ‘C’ at the Bell Laboratories. It was created from ‘ALGOL’, ‘BCPL’ and ‘B’ programming languages.


JAVASCRIPT - 
JavaScript is a multi-paradigm, dynamic language with types and operators, standard built-in objects, and methodsIts syntax is based on the Java and C languages — many structures from those languages apply to JavaScript as well. JavaScript supports object-oriented programming with object prototypes and classes.


PYTHON - 
The complete script of Python is written in the C Programming LanguageWhen we write a Python program, the program is executed by the Python interpreter. This interpreter is written in the C language.


KOTLIN - 
Kotlin was built by software development tool creators JetBrains in 2010. As most of their products were developed in Java, they decided to build a Java-based language that was more concise, while introducing new constructs such as high-order functions.


SWIFT - 
It was built with the open source LLVM conpiler framework and has been included in Xcode since version 6, released in 2014. On Apple platforms, it uses the Objective-C runtime library, which allows C, Objective-C, C++ and Swift code to run within one program.


 RUST - 
Like Java, Rust is compiledIt is compiled to the LLVM spec, similar in spirit to the JVM, allowing for output to a variety of target platforms. And like Java, Rust descends from the C lineage. Its use of curly braces for blocks and semi-colons for line terminations is exactly the same as Java.


RUBY - 
It was created in 1995 by Yukihiro Matsumoto and was written in the programming language CRuby is often regarded as easier to comprehend than some of its peers because of its dynamic typing.

Comments

Popular posts from this blog

HALF AND FULL-DUPLEX

von Neumann ARCHITECTURE