What is the output of the following Java program?
class A { public StringBuilder f1() { StringBuilder b=new StringBuilder("This is Java Program"); b.replace(8, 12, "Example Java"); return b; } } public class Test { public static void main(String[] args) { A a=new A(); System.out.println(a.f1()); } }
Reveal answer
Fill a bubble to check yourself