ALL FAMOUS PROGRAMING LANGUAGES USED WORLDWIDE..






HTML (HyperText Markup Language) : The page-layout language that 99% of the web is written in. It is not a programming language per se, but it has a structure that is quite similar to many programming languages.
Pro: It is ubiquitous, and knowing it will be a usefuly skill even if you never do any programming. Also, it is much simpler in most waysthat a full programming language.
Con: Limited to page layout. Fairly verbose. Requires additional languages for stylesheets and scripting to be most effective.

XML (Extensible Markup Language): a meta-language for defining markup languages; the newer versions of HTML are defined in XML. Used for creating custom markup types.
Pro: Can be used to create application-specific document languages that are more useful for specific tasks than HTML.
Con: Can lead to confusion of meta-levels.

CSS (Cascading Style Sheets): A language for defining how to present the documents structured with markup languages such as HTML.
Pro: An important complement to HTML and similar markup languages; allows the separation of document presentation from document description.
Con: Is only useful in conjunction with a markup language.

Visual Basic: A language created by Microsoft, derived (at several removes) from the older GWBASIC. Support object-oriented programming, but has a peculiar object model that is at variance from those used in the rest of the programing world. Visual Basic.NET is a very different language from the earlier versions. Has a very powerful built-in graphical development tools suite.
Pro: Has excellent support, and used widely in Windows programming. Syntax is (or seems) relatively easy for a beginner to learn.
Con: Windows specific; only provided by Microsoft. The language itself is a moving target, as the developers alter it to suit their latest vision of what it should be. The 'simple' syntax and RAD tools hide an abyss of complexity that can make non-trivial tasks a nightmare (though VB.NET has fixed much of this). Use of the RAD tools tends to discourage careful design.

C: A popular systems language, and also widely used for applications programming.
Pro: Simple, flexible, and blazingly fast. Extremely concise syntax that is widely imitated in many other languages. Excellent for systems programming.
Con: Low level, with relatively weak abstraction. Somewhat cryptic syntax can be hard to grasp at first. Requires extremely careful attention to detail, especially regarding pointers and manual memory management. Cannot generally be used for web programming (except for creating Active X controls). Lends itself to very difficult-to-understand code.

C++: a derivative of C, it adds facilities for object-oriented programming and generics (templates), and expands the standard library considerably.
Pro: Largely (~95%) backward-compatible with C. Capable of powerful abstraction. Ubiquitous. Nearly as fast as straight C.
Con: Vastly more complex than C, and very hard to learn as a first language (though some would argue this is a good thing, as it would make other languages seem easier by comparison). Like C, cannot be used for general web scripting or applets. Even more likely to result in incomprehensible code than C.

Java: An object-oriented language related too, but not compatible with, C and C++. Considerably simpler (and arguably, more elegant) than C++, while providing a comparable level of abstraction. Usually compiled to an interpreted bytecode, though it can be compiled to native code reasonably efficiently. Is designed to work over networks transparently, and can be used to write web applets. It has additional safety checking, and uses garbage collection for memory management.
Pro: Fairly abstract, and reasonably easy to learn. More secure than C++. Avoids certain types of memory and pointer bugs. Excellent for web programming, if rather heavyweight.
Con: Slower than C or C++ even when compiled to native code. Cannot access memory directly via pointers. Language is still evolving at the whim of the Sun developers, making it something of a moving target.

C#: a C-like language developed by Microsoft as part of the .NET framework. It can be described as Java modified to use the Visual Basic.NET object model.
Pro: Very similar to Java.
Con: ... except when you expect it to be. Only supported by Microsoft.

Javascript: An OOP scripting language specifically designed for web scripting, with a C-like syntax. Despite the name, it has no particular connection to Java. Usually part of a browser, or a browser plug-in; some standalone interpreters exist, but are rarely used. Has excellent support for Document Object Model.
Pro: Excellent for light web scripts, both client side and server side (in Active Server Pages). Supported by the majority of web browsers.
Con: Of limited use outside of web programming. Scales very poorly. Very slow.

VBScript: A scripting language similar to Javascript, except that it uses the Visual Basic syntax.
Pro: Fits the same niches as Javascript.
Con: Much less widely supported than Javascript.

PHP: A language designed specifically for server-side web programming. I must confess that I do not know enough about it to comment on it.

Perl: A powerful scripting tool combining many of the qualities of C, Lisp, and Awk. Has powerful text manipulation and regular expression tools. Supports OOP, with interesting but very peculiar object model.
Pro: Ubiquitous. Very well documented and supported. Extremely good for text manipulation. Has what is probably the largest online code repository of any programming language (CPAN), making it possible to do much development using existing libaries. In expert hands, can be incredibly concise and expressive.
Con: Slow. Extremely complex syntax with countless special cases. Code can become utterly incomprehensible schockingly fast, even compared to C++.

Python: A cleanly designed scripting language with support for OOP and functional programming. Uses indentation as part of the syntax.
Pro: Very easy to learn - can be learned in a day even by a novice. Encourages understandable code. Supports some sophisticated abstractions such as list comprehensions, Continuation Passing Style, and generators.
Con: Use of significant whitespace (indentation) is a source of serious problems, even with editor support. Very slow. Not as widely supported as Perl.

Ruby: A cleanly designed OOP scripting language, very similar in some ways to Python. Again, I don't really know enough to comment.

Scheme: A language in the Lisp family, with a radically different syntax from most other languages. Very simple and minimalist in structure. Has a very high level of abstraction, and supports constructs that are unheard of in most languages. Primarily designed for functional programming, but can support OOP with added libraries.
Pro: Extremely easy to learn - the basics can be grasped in less than a day. Has some excellent tutorial material. Extremely flexible and extensible. Excellent for exploratory programming and highly dynamic data structures. Is widely used for programing research. Has one of the most highly optimizing compilers ever designed (Stalin). Has several extensive libraries. Core language is very carefully specified. Gives some amazing insights into programming as a whole.
Con: Rarely used outside of academia. Radically different from most other languages, which can make it confusing. Tends to have very heavy memory requirements, and can be very slow without extensive optimization. Standard library is very small. Minimal core language has lead to incompatible extensions in the interpreters, compilers and libraries, fragmenting the user base.

Smalltalk: One of the parent languages of object oriented programing (though Simula and Actors were earlier). Very simple infix syntax. Very closely tied to it's language environment.
Pro: Extremely easy to learn - the basics can be grasped in less than a day. Has some excellent tutorial material. Extremely flexible and extensible. Excellent for exploratory programming and highly dynamic data structures. Is widely used for programing research. Has extensive built-in class libraries, and excellent class browsing and editing tools. Gives some amazing insights into OOP.
Con: Rarely used in general. Radically different from most other languages, which can make it confusing. Tends to have very heavy memory requirements, and can be very slow without extensive optimization. Tight coupling to the environment means it cannot be used for standalone programs.

Filled Under: