afaik,
string is immutable and string buffer is mutable.
when we concatenate characters with string new string object will be created.
but when we append string buffer it remains the same object.
apart from these what are the key and other difference between them?.