Answer:
True
Explanation:
This is true. Consider this Java Statement
String string = new String("Hello");
In other pass pass any message to this String object string, the method must be called on the String object using the dot operator for example, the length method string.length(); the equals method string.equals() and several others. This is different when using the Math class, since the Math class belongs to the package java.lang it is static imported.
Static import implies that the members of a class are used in the code without creating instance variables, unlike the string where the message must be passed to the object instance