employer cover photo
employer logo
employer logo

Mindfire Solutions

Is this your company?

Mindfire Solutions Interview Question

why string immutable

Interview Answer

Anonymous

Jun 3, 2019

strings immutable because. If somebody modifies the string he's creating a new string object, leaving the old one alone. every time we assign a new value to string it will create a new instance. advantages: thread safe.

1