employer cover photo
employer logo
employer logo

State of South Carolina

Is this your company?

State of South Carolina interview question

What is the difference between a String and a StringBuilder

Interview Answer

Anonymous

Nov 24, 2017

The string is an immutable object, operations done on it will return a new string, whereas the StringBuilder has a mutable value that can then be returned as a String.

1