In loops we keep terminating conditions and we check those conditions in every pass.
I have seen 2 methods to check
1 .  i > x  or  i < x 
and the second approch is
2 .  i >= x  or  i <= x 
Is there any performance difference in these to 2 approaches while the logical comparison.
Is there any difference in execution time required for both operations. i.e. > and >= ?
 
     
     
    