What will be the output of the following program?
public class StringBufferDemo {
public static void main(String[] args) {
StringBuffer firstBuffer = new StringBuffer("Merit Campus");
System.out.println("First Buffer = " + firstBuffer);
System.out.println("Old Capacity = " + firstBuffer.capacity());
firstBuffer.ensureCapacity(27);
System.out.println("New Capacity = " + firstBuffer.capacity());
}
}