Multiple choice technology programming languages Is it possible to extend the java.lang.String class? yes no java.lang.String is declared as final some times only none of these Reveal answer Fill a bubble to check yourself B Correct answer Explanation The java.lang.String class is explicitly declared with the final modifier in the Java API. This design prevents other classes from subclassing it, ensuring security, optimization, and immutability of string objects.