Download as docx, pdf, or txt
Download as docx, pdf, or txt
You are on page 1of 2

Python is an interpreted, object-oriented, high-level programming language with dynamic

semantics. ... Python's simple, easy to learn syntax emphasizes readability and therefore reduces the
cost of program maintenance. Python supports modules and packages, which encourages program
modularity and code reuse.

print("Hello, World!")

PHP (recursive acronym for PHP: Hypertext Preprocessor ) is a widely-used open source general-
purpose scripting language that is especially suited for web development and can be embedded into
HTML.

<!DOCTYPE html>
<html>
<body>

<h1>My first PHP page</h1>

<?php
echo "Hello World!";
?>

</body>
</html>
<?php
// PHP code goes here
?>
Fortran is a general-purpose, compiled imperative programming language that is especially
suited to numeric computation and scientific computing.
PROGRAM MyProgram
! Do some stuff here
END PROGRAM MyProgram

Visual Basic (VB) is an event-driven programming language and environment from Microsoft
that provides a graphical user interface (GUI) which allows programmers to modify code by simply
dragging and dropping objects and defining their behavior and appearance.

Module Module1

Sub Main()
End Sub

End Module
Java is an object-oriented programming language developed by James Gosling and colleagues at Sun
Microsystems in the early 1990s. ... Java is only distantly related to JavaScript, though they have similar
names and share a C-like syntax. History. Java was started as a project called "Oak" by James Gosling in
June 1991

public class MyFirstJavaProgram {

public static void main(String []args) {

System.out.println("Hello World");

You might also like