Tester

public class Tester {
  public static void main(String[] args) {  

        int result = 4;
        if ( 4 % 2 > 0 )
            result += 2;
   
  }
}
What is the final value of result?