1.

What is the output of this program? class output { public static void main(String args[]) { StringBuffer c = new StringBuffer("Hello"); StringBuffer c1 = new StringBuffer(" World"); c.append(c1); System.out.println(c); } }

A. Hello
B. World
C. Helloworld
D. Hello World
Answer» E.


Discussion

No Comment Found