Monday 20 May 2013

what is the Best programming Language to learn in 2013


An interesting article caught my eye at jobstractor.com — the programming language trends review. The company analyzed more than 60,000 job vacancies during 2012 to produce a chart of the most sought-after technologies:

                            
                Language                              Jobs
                            PHP                                                                      12,664
                            Java                                                                      12,558
                            Objective C                                                          8,925 
                            SQL                                                                       5,165                                           
                            Android(java)                                                       4,981
                            Ruby                                                                     3,859            
                            Javascript                                                             3,742
                            c#                                                                           3,549
                            c++                                                                         1,908
                            Actionscript                                                           1,821
                            Python                                                                   1,649
                            C                                                                            1,087
                            Asp.net                                                                  818


Despite developer complaints, demand for PHP and Java (server/Android) remains strong. You would also expect those jobs to require some SQL knowledge although that has a strong showing in its own right. ActionScript is a dying art so it’s rapidly falling off the chart.

WORLD TOP TEN PROGRAMMING LANGUAGES

1.JAVA :
     An object-oriented programming language developed in the late 1990s by James Gosling and colleagues at Sun Microsystems.

2.C:
    C, a general purpose programming language built by Dennis Ritchie when he was a part of Bell Telephone labs, is the bass of C++ and other programming languages. It was built to work with the Unix operating system.

3.C#:
   This general-purpose programming language developed by Microsoft evolved from C and C++ as a part of the software company’s .NET initiative.

4.C++:
    C++ is a general purpose multi-paradigm spanning compiled language that has both high-level and low-level languages’ features. It was started as an enhancement to the C programming language,Bjarne Stroustrup in 1979.

5.Objective-c:
     This object-oriented programming language created first by Brad Cox and Tom Love at their company Stepstone in the early 1980s, adds Smalltalk-like messaging to the C programming language.

6.PHP:
    This language is especially suited for Web development because of it easy embedding into HTML pages. It is an open-source, server-side, cross-platform, interpretive HTML scripting language

7.VB :
   This is an event-driven programming language which is implemented on Microsoft’s .Net framework.

8.Python :
    This is an event-driven programming language which is extensively used by Google because of its simplicity. It is managed by the Python Software Foundation.

9.perl :
    Being a high-level programming language, its emphasis lies in code readability and clear syntax. It combines Object-oriented and functional programming styles, and is often used as a scripting language. Perl is an open-source language used widely to process text through CGI programs.

10.Javascript :
    JavaScript is an object-oriented scripting language that is smaller than Java. Being a client-side language, it runs in the web browser on the client-side with a simplified set of commands, easier code and no need for compilation.


Monday 6 May 2013

javascript conform box


<script type="text/javascript">
function Validate(event) 
{
var thereturn = confirm("Are you sure want to delete the profile?");
if (event) 
{
        if (!thereturn)
{
event.preventDefault();
}
} 
else 
{
return thereturn;
}
}
window.onload = function()
{ 
document.getElementById('delete-form').onsubmit = Validate;
};
</script>
<input type="submit" class="submit redform" value="delete"  onclick="Validate(event)" />