Question: Your code need to try casting an object. If the cast is not possible, you do not want an exception generated, instead you want null to be assigned. Which operator can safely cast a value?

  1. `as?`
  2. `??`
  3. `is`
  4. `as`

Answer: The correct answer of the above question is Option A:`as?`