public class Test {  <br /> public static void replaceJ(string text) {  <br /> text.replace (‘j‘, ‘l‘);  <br /> }  <br /> public static void main(String args) {  <br /> string text = new String (“java”)  <br /> replaceJ(text);  <br /> system.out.printIn(text);  <br /> }  <br /> }  <br /> What is the result?()  
A、 The program prints “lava”
B、 The program prints “java”
C、 An error at line 7 causes compilation to fail.
D、 Compilation succeeds but the program throws an exception.