

Java.lang Class - Programming
Q1: What will be the output of the program?
String a = 'ABCD';
String b = a.toLowerCase();
b.replace('a','d');
b.replace('b','c');
System.out.println(b);
A abcd
B ABCD
C dccd
D dcba
ANS:A - abcd String objects are immutable, they cannot be changed, in this case we are talking about the replace method which returns a new String object resulting from replacing all occurrences of oldChar in this string with newChar. b.replace(char oldChar, char newChar); But since this is only a temporary String it must either be put to use straight away i.e. System.out.println(b.replace('a','d')); Or a new variable must be assigned its value i.e. String c = b.replace('a','d'); |


For help Students Orientation
Mcqs Questions
One stop destination for examination, preparation, recruitment, and more. Specially designed online test to solve all your preparation worries. Go wherever you want to and practice whenever you want, using the online test platform.