Java
Java was originally developed for cable television, but it was eventually repurposed to be used in the then fledging Internet in 1995.
Python
Python began as a hobby program and successor to a program named ABC.
Pascal
Pascal is a language that is used in many different ways. It has been used to introduce students to programming and also in high levels of technology.
Cobol
In the late 1950s, a common programming language was needed to be used in business. The government called many differnet experts to create a language that would save money and make business much more efficient.
program Pascal;
uses crt;
begin
write('Hello!')
readIn;
end.
program Pascal;
uses crt;
var 1 :(23 + 22);
var 2 : (42 + 5);
var 3 : (2 * 3);
var 4 : (42 / 6);
begin
write('23 + 22' + one)
write('42 + 5' + two)
write('2 * 3' + three)
write('42 / 6' + four)
readIn;
end.