Question: What is the correct syntax for instantiating a new object of the type Game?
- `my_game = class.Game()`
 - `my_game = class(Game)`
 - `my_game = Game()`
 - `my_game = Game.create()`
 
Answer: The correct answer of the above question is Option C:`my_game = Game()`