Consider the following code example. Assume the Integer object to which x refers is created in memory location 42, and that the Double object to which y refers is created in memory location 43. public class Adder { public static double add(Integer in1, Double in2, int in3) { return in1 in2 in3; } public static void main(String[] args) { Integer x