June 01, 2007

The art of programming

The art of programming is an art of making fool to think logical. Its
neither maths nor science. You may write a code on any language but
finally it will be converted to machine language. This tasks are done
by the compiler or interpreter resides within the language's library.
Compare to interpreter compilers are so fast. Interpreters making
codes line by line whereas compilers are doing all at once. Each
language has its own libraries containing related functions for
numeric operations, string manipulation and file handling etc. So all
the languages are having powerful tools on its own. How effectively we
are using or reusing those tools is the art of programming. Reusing
already existing codes is an advanced level of this art. So many
languages are there but very few languages would allow u to reuse the
codes. Those languages are commonly known as object oriented programs.
What is object. You can take any object like pen and pencil. Each
object having its own behavior and purpose of use. So we have to
decide when, where and for what we are going to use those objects.
This is applicable for programming also. So programming is a live art.