String is a non-primitive and immutable data type in Java that represents a sequence of characters. It is stored in the String Constant Pool in the heap memory. Methods like equals(), concat(), contains(), indexOf() etc. are used to perform operations on strings. String is immutable to prevent unexpected behavior if the contents of a string are changed.