Question: Your function is passed by a parameter obj of type Any. Which code snippet shows a way to retrieve the original type of obj, including package information?
- `obj.classInfo()`
- `obj.typeInfo()`
- `obj::class.simpleName`
- `obj::class`
Answer: The correct answer of the above question is Option D:`obj::class`