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?

  1. `obj.classInfo()`
  2. `obj.typeInfo()`
  3. `obj::class.simpleName`
  4. `obj::class`

Answer: The correct answer of the above question is Option D:`obj::class`