Question: How many objects are created by the following code?Object a, b, c, d, e;
e = new Object ();
b = a = e;
e = new Object ();
A
B
C
D
2
B
5
C
4
D
That code is invalid.
Note: Not available