No, “abc” is not a primitive value in the context of Core Java. In Java, primitive data types include int, float, double, char, boolean, byte, short, and long. These types represent simple values, and they are not objects.
On the other hand, “abc” is a String in Java, and strings are objects. In Java, strings are instances of the java.lang.String
class, which is part of the Java standard library and provides various methods for manipulating strings.
So, to summarize, “abc” is not a primitive value; it is a String object in Java.