Question: The function **typeChecker** receiver a parameter **obj** of type **Any**. Based upon the type of **obj**, it prints different messages for Int, String, Double, and Float types; if not any of the mentioned types, it prints "unknown type". What operator allows you to determine the type of an object?
- `instanceof`
- `is`
- `typeof`
- `as`
Answer: The correct answer of the above question is Option B:`is`