Fortran - Short for FORMula TRANslation, it was the first ever high-level language. It is particularly useful in number crunching, and scientific/mathematical/statistical/engineering procedures.
Cobol - Cobol is named for common business oriented language, and is mostly used in business, finance, and administrative systems for governments and companies.
Pascal - Named after the French mathematician and philosopher Blaise Pascal, Pascal is based on structured programming.
Python - Made by Guido van Rossum, Python fully supports bject-oriented programming and structured programming. Python was also designed to be extremely extensible.

program Pascal;
uses crt;
begin
write('Hello!')
readIn;
end.
The difference between this program and javascript is that javascript has a popup window option, while pascal does not.

program Pascal;
uses crt;
var one :(2 + 2);
var two : (3 + 3);
var three : (5 * 5);
var four : (4 / 2);
begin
write('2 + 2' + one)
write('3 + 3' + two)
write('5 * 5' + three)
write('4 / 2' + four)
readIn;
end.
The difference between this program and javascript is Pascal has different variable types, while javascipt only has one.