String a = “ABCD”; <br /> String b = a.toLowerCase(); <br /> b.replace(‘a’, ‘d’); <br /> b.replace(‘b’, ‘c’); <br /> System.out.println(b);  <br /> What is the result? () 
A、 abcd
B、 ABCD
C、 dccd
D、 dcba
E、 Compilation fails.
F、 An exception is thrown at runtime.