Multiple choice java String name="ALIEN"; name.reverse(); Is code successfully compiled..??? True False Reveal answer Fill a bubble to check yourself B Correct answer Explanation String objects in Java are immutable and do not have a reverse() method. To reverse a string, you would need to use StringBuilder or convert to a char array, reverse it, and create a new string.