Answer:
E (Nothing is printed because the code will not compile)
Explanation:
There is a difference between Double which is a wrapper class and double which is data type. Changing the line Double d1 = new Double(7.5) to Double d1 = new (7.5) or simple declaring double d1 = 7.5 would have giving a printout of 9.0.