Today's Question:  What does your personal desk look like?        GIVE A SHOUT

Top 9 Most Popular Programming Languages In IT Companies

  AKASH PADHIYAR        2011-04-27 09:21:52       2,151        0    

1.) C Language

C Language Logo

C  Language is a general-purpose computer programming language developed between 1969 and 1973by Dennis Ritchie at the Bell Telephone Laboratoriesfor use with the Unix operating system.

Although C was designed for implementing system software. it is also widely used for developing portable application software.

01
02
03
04
05
06
07
08
09
10
11
#include <stdio.h>
 
int main(void)
 
{
 
printf("hello, world!\n");
 
return 0;
 
}

2.) C ++

C++ History

C ++ was developed by Bjarne Stroustrup starting in 1979 at Bell Labs as an enhancement to the C language and originally named C with Classes. It was renamed C++ in 1983.

C ++ is one of the most popular programming languages and its application domains include systemssoftware, application software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games.

1
2
3
4
5
6
7
8
9
#include <iostream>
 
int main()
 
{
 
std::cout << "Hello, world!\n";
 
}

3.) Java

Java History

Java is a programming language originally developed by James Gosling at Sun Microsystems (which is now a subsidiary of Oracle Corporation) and released in 1995 as a core component of Sun Microsystems’ Javaplatform.

The language derives much of its syntax from C and C++ but has a simpler object model and fewer low-levelfacilities. Java applications are typically compiled to bytecode (class file) that can run on any Java Virtual Machine (JVM) regardless of computer architecture.

Java was originally designed for interactive television, but it was too advanced for the digital cabletelevision industry at the time.

1
2
3
4
5
6
7
8
9
public class HelloWorld {
 
public static void main(String[] args) {
 
System.out.println("Hello, world!");
 
}
 
}

4.) Php

Php History

PHP is a general-purpose scripting language that is especially suited to server-side web developmentwhere PHP generally runs on a web server. Any PHP code in a requested file is executed by the PHP runtime, usually to create dynamic web page content.

It can also be used for command-line scripting and client-side GUI applications. PHP can be deployed on most web servers, many operating systems and platforms, and can be used with many relational database management systems (RDBMS). It is available free of charge, and the PHP Group provides the complete source code for users to build, customize and extend for their own use.

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
 
<html>
 
<head>
 
<meta charset="utf-8" />
 
<title>PHP Test</title>
 
</head>
 
<body>
 
<?php
 
echo 'Hello World';
 
</body>
 
</html>

5.) C#

C Sharp History

C# was developed by Microsoft within the .NET C# is intended to be a simple, modern, general-purpose, object-oriented programming language.Its development team is led by Anders Hejlsberg. The most recent version is C# 4.0, which was released on April 12, 2010.

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
using System;
 
class ExampleClass
 
{
 
static void Main()
 
{
 
Console.WriteLine("Hello, world!");
 
}
 
}

6.) Vb.Net

Vb.net History

Visual Basic .NET (VB.NET) is an object-oriented computer programming language implemented on the.NET Framework. Microsoft currently supplies two major implementations of Visual Basic: Microsoft Visual Studio, which iscommercial software and Microsoft Visual Studio Express, which is free of charge.

01
02
03
04
05
06
07
08
09
10
Public Class Form1
 
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As
System.EventArgs)Handles Button1.Click
 
Msgbox("Hello, World")
 
End Sub
 
End Class

7.) Ruby

Ruby Programming history

Ruby is a dynamic, reflective, general-purpose object-oriented programming language that combines syntax inspired by Perl . Ruby originated in Japan during the mid-1990s and was first developed and designed by Yukihiro “Matz” Matsumoto..

1
puts "Hello World!"

8.) JavaScript

JavaScript History

JavaScript was originally developed by Brendan Eich of Netscape under the name Mocha, which was later renamed to LiveScript, and finally to JavaScript.

JavaScript is a an object-oriented, scripting programming language that runs in the Web browser on the client side. Its smaller than Java, with a simplified set of commands, easier to code and doesnt have to be compiled. JavaScript, also known as ECMAScript

01
02
03
04
05
06
07
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
<html>
 
<head><title>simple page</title></head>
 
<body>
 
<script type="text/javascript">
 
<span id="IL_AD8" class="IL_AD">document</span>.write('Hello World!');
 
</script>
 
<noscript>
 
<p>Your browser either does not support JavaScript,
 or you have JavaScript turned off.</p>
 
</noscript>
 
</body>
 
</html>

9.) Perl

Perl History

Perl is a general-purpose programming language originally developed for text manipulation, but as of 2010 is used for a wide range of tasks including system administration, web development, networkprogramming, games, bioinformatics, and GUI development. Programming Perl, published by O’Reilly Media, features a picture of a camel on the cover and is commonly referred to as the â€œCamel Book”

JAVA  C  C#  C++  RUBY  POPULAR PROGRAMMING L 

Share on Facebook  Share on Twitter  Share on Weibo  Share on Reddit 

  RELATED


  0 COMMENT


No comment for this article.