How many objects will be create for the follwing string on the heap

 String a = "abc";
 String b = "def";
 String c = "ghi";
 String d = a+b+c

Number of objects on heap = ?