Archive for the ‘Information’ Category

Flow Control and Iteration

Monday, September 29th, 2008

Image Source:theopensourcery.com Flow control and iteration are two useful features in most programming languages. Without them, programs would be linear.Flow control means exactly what it sounds like. Control the flow. When using flow control, you are regulating the ...

Looping Statements Doesn’t loop?

Sunday, August 10th, 2008

Image Source: www.pragprog.com Did you know that looping statements doesn’t loop the whole if-else statement if you put an if-else statement in the looping statement? That’s right. Looping statements only goes through the if-else statements once. Once the looping statement activates the statements inside the if-else statement, the looping statement will ...