Question: What part of the code below causes the method `#decrypt_data` to be run?

  1. `MyModel.first.update(field: 'example')`
  2. `MyModel.where(id: 42)`
  3. `MyModel.first.destroy`
  4. `MyModel.new(field: 'new instance')`

Answer: The correct answer of the above question is Option B:`MyModel.where(id: 42)`