when you change the String, create new String object ('abcdef') and change the reference from 'abce' to 'abcdef'.But you can not remove 'abcd'. Only change the reference. That is immutable.
final:
Actually final is a keyword.When you add it to variable, you can not change the reference.