1.

What is the output of this program? class output { public static void main(String args[]) { StringBuffer s1 = new StringBuffer("Hello"); s1.insert(1,"Java"); System.out.println(s1); } }

A. hello
B. Java
C. Hello Java
D. HelloJava
Answer» E.


Discussion

No Comment Found