Question: How do you indicate that a string might be null?

  1. `A string cannot be nullable.`
  2. `string? myVariable`
  3. `string myVariable = null`
  4. `string(null) myVariable`

Answer: The correct answer of the above question is Option B:`string? myVariable`