Respuesta :
Case classes can not contain member functions is the true statement. Case classes are analogous to Java's data POJO. State-preserving classes that can be accessed by functions.
What is Case classes?
A case class offers greater capabilities than an ordinary class. When the case keyword appears in front of a class, the compiler generates code for you with the following advantages: The accessor methods are generated for each argument because the case class constructor parameters are public val fields by default.
One of the main advantages of the Case Class is that the Scala Compiler adds a method with the name of the class that has the same number of parameters as specified in the class declaration. As a result, Case Class objects can be created even when the keyword new is not present.
Thus, it is a true statement.
For more details about Case classes, click here:
https://brainly.com/question/13438424
#SPJ2