Discover the power of algorithms

Complexities of algorithm, thier applicability. Optimization techniques associated with diffrent algos.

Mar 18, 2010

Perception a boon or a killer ?

Perception is considered to be starting point of thinking. In most of the cases perception starts with our experiences we have from life. If we look thinking steps it would be:- a) We see, observe or feel. b) We percepts i.e. start thinking and analyzing. c) We conclude and take actions. <p><p><p><p><p><br /> </p></p></p></p></p> Most...



KISS optimization principle.

Process/Code optimization is all time burning issue for projects/products in Industry. If we search for optimization techniques we get lots of complex theory and lengthy algorithm which claims to give optimizations. But its not advisable to run after such solution at very first level. One need to understand the need for it and that's what KISS principle is all about. The "keep it simple, stupid" (KISS) principle, calls for giving simplicity a high priority in development. So one need to consider...



Mar 10, 2010

C++ Brain Food : A must solve c++ question.

I really like this c++ question. It really helps us to understand exception handling mechanism of c++. Lets check you will get it right or not:- Don't just execute code with compiler to get the result, try out by doing dry run. What output does this program generate as shown? Why? #include using namespace std; class A { public: A() { cout << "A::A()" << endl; } ~A() { cout << "A::~A()" << endl; throw "A::exception"; ...



Mar 5, 2010

What is Inline function in c/c++? A discussion on its Advantages,Disadvantages,Performance and Uses Guidelines.

Inline function is the optimization technique used by the compilers. One can simply prepend inline keyword to function prototype to make a function inline. Inline function instruct compiler to insert complete body of the function wherever that function got used in code. Advantages :- 1) It does not require function calling overhead. 2) It also save overhead of variables push/pop on the stack, while function calling. 3) It also save overhead of return call from a function. 4) It increases locality of reference by utilizing instruction cache. 5) After in-lining compiler can also...



Mar 4, 2010

The unbalanced discovery boosts the unseen blast.

Lets see how much conclusion one can draw from this post topic. This will help testing your creativity.Such random exercise help one's to open their mind, to let it fly in this big sky of imagination. Let's see how far you can fly...



Mar 2, 2010

How to achieve code portability ? Basic 10 quick tips.

Code portability basically refers to making source code able to compile on different platform without making any changes in source code. While coding its very important to keep portability in mind.The best way to introduce code portability is while coding.Keeping certain things into account we can achieve code portability with lesser effort, which we will discuss in this post.There are certain tools too which detect portability problems on source code, its a post processing of code and requires extra effort. Non-portable code introduces problems like maintenance of different versions, reduces...



What's the difference amongst code portability, software portability and application poratoability ?

Many people gets confused of terms Code Portability, Software portability and Application portability. Lets understand the differences amongst them. Application portability means that application is designed in a way that it can run independently without actually installing its file on the system. A portable application did not install any file on the system and can be run with the help of removable devices like USB, portable hard drive, CD, flash drive or floppy disk. Application portability is often get confused with Software portability, where as Software portability refers to designing of...



Mar 1, 2010

"Lathmar Holi" a traditional Indian Holi showing Radha's Sweet Festive Revenge

Today is Holi, the Indian festival of colors. One will not find as many color as found in this festival. Auspicious red, Soothing silver, Sunkissed gold, Pretty purple, Blissfull blue, Forever green all colors are there. People used to play holi by forgetting all thier previous rivalry and used to enjoy great indian cusine of sweets, typical indian "bhang",traditional drink called as "thandaii", play color names as "gulal". Its all very colorful and you can put color to anybody by just saying "Bura na mano holi hai". Holi get celebrated in many ways and...



Page 1 of 1212345Next