Comment
Author: Admin | 2025-04-28
Was released in 1957 as a programming tool for the IBM 704.Features:FORTRAN allows the subroutines to be written to execute the functions and provide the return values.FORTRAN supported the procedural programming language that allows the code to be written in an algorithmic way.Hello World in Fortran:program helloworld print *, "Hello World"end program helloworld29. Bash (Unix Shell)Bash is a Unix shell and command language written by Brian Fox for the GNU Project as a free software replacement for the Bourne shell. The name is an acronym for the ‘ Bourne-Again Shell ‘, a pun on Stephen Bourne, the author of the direct ancestor of the current Unix shell sh , which appeared in the Seventh Edition Bell Labs Research version of Unix.Features :Supports Brace Expansion.Good Debugging.Hello World in Bash:echo "Hello World"30. HTML LanguageHTML stands for Hyper Text Markup Language, which is the most widely used language on Web to develop web pages. HTML was created by Berners-Lee in late 1991 but “HTML 2.0” was the first standard HTML specification which was published in 1995. HTML 4.01 was a major version of HTML, and it was published in late 1999.Features:It is platform-independent.Images, videos, and audio can be added to a web page.Hello World in HTML:HTMLhtml> head> head> body> h1>Hello Worldh1> body>html>Hello WorldSo this is how we can print “Hello World” in 30 different languages.
Add Comment