Which one will be faster in Java, Increment operator or Decrement operator?
a) for(int i = 0; i < 1000; i++) {} b) for(int i = 1000; i > 0; i--) {}