(Choose 1 answer)
String s;
You have the following code:
s = "Hello":
t="" + "my" + s.toLowerCase();
s.append(t);
s += "friend";
System.out.println(s);
What will the output be?
A. Compile error
B. Hello my friend
C. hello my Friend
D. hello my friend
E. Runtime error
Exit 43