Music

Report a typo

Here's a complex class hierarchy:

class Music:
    ...


class Rock(Music):
    ...


class Pop(Music):
    ...


class PopRock(Rock, Pop):
    ...


class Indie(Music):
    ...


class IndiePopRock(Indie, PopRock):
    ...

What's the method resolution order for the class IndiePopRock? Sort the methods in the correct way.

Put the items in the correct order
Rock
Pop
IndiePopRock
Music
Indie
object
PopRock
___

Create a free account to access the full topic