Multiple choice technology web technology

Strings Are Immutable Objects

  1. True

  2. False

Reveal answer Fill a bubble to check yourself
A Correct answer
Explanation

Strings in Java are immutable - once created, their values cannot change. Methods like concat(), substring(), or toUpperCase() return new String objects rather than modifying the original. This design enables string interning and thread safety.