Geekific
What will be the output of the following code? -------------------- public static void main(String[] args) { StringBuilder sb = new StringBuilder("Hello"); String s = sb.append(" World").toString(); System.out.println(s);}
9 months ago | [YT] | 9
Geekific
What will be the output of the following code?
--------------------
public static void main(String[] args) {
StringBuilder sb = new StringBuilder("Hello");
String s = sb.append(" World").toString();
System.out.println(s);
}
9 months ago | [YT] | 9