Tester

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

      final int INT_CONSTANT = 5;
      final double DOUBLE_CONSTANT = 10.5;
      double result =  DOUBLE_CONSTANT / INT_CONSTANT;
   
  }
}
What is the final value of result?