Strings in java are mutable?
True
False
Answers
Answered by
5
Answer:
Strings can be mutable or immutable depending on the language. Strings are immutable in Java. But in some other languages, like C++, strings can be mutable, and we can modify them directly: string testString("mutable?"); testString[7] = '!
Explanation:
please mark me a brainliest
Answered by
3
Similar questions