Answered Questions

  • What is meant by Mutable and Immutable classes?

    Manish

    • Jul 9th, 2015

    Mutable: Mutable means whose state can be changed after it is created. Immutable: Immutable means whose state cannot be changed once it is created. String objects are immutable it means we cannot ...

    gaurav

    • Oct 13th, 2012

    Mutable is liable to change Immutable is not liable to change... String is immutable i.e. Strings cannot be altered. When you alter a string (by adding to it for example), you are actually creating ...