Hi sir,please explain these two questions:

Q5. Which is true for the following simple class declaration?
class Person (val name: String)

Is package private.

It is public.

It has private property ‘name’

It can be extended by other classes

Q8. What does Data Class not offer ? What does Data Class not offer ? Auto generated hashCode() and equals() method A generated copy() method, to create copies of instances Automatic Conversion from/to JSON An auto generated toString() method

Automatic conversion to json is supported by data class.