Question: For the following class, how do you get the value of 42 from an instance of X?

  1. `x.get('Y')`
  2. `x.Y`
  3. `x.Y()`
  4. `x.get().Y`

Answer: The correct answer of the above question is Option B:`x.Y`