46. What will be the output of the following code?

public class Test{
public static void stringReplace(String text){
text=text.replace('j','l');
}
public static void bufferReplace(StringBuffer text){
text=text.append("c");
}
public static void main(String args[]){
String textString=new String("java");
StringBuffer textBuffer=new StringBuffer("java");
stringReplace(textString);
bufferReplace(textBuffer);
System.out.println(textString + " " + textBuffer);
}}

Select 1 correct answer: 
A. lava javac
B. lava java
C. java javac
D. The code will not compile.