Question: What is the correct syntax for instantiating a new object of the type Game?

  1. `my_game = class.Game()`
  2. `my_game = class(Game)`
  3. `my_game = Game()`
  4. `my_game = Game.create()`

Answer: The correct answer of the above question is Option C:`my_game = Game()`