What code segment would properly create an instance of the subclass using the variable mydog and name it Penny with 3 legs and have the color set to white?
a) mydog = SubClass("Penny", 3, "white")
b) mydog = SubClass(name="Penny", legs=3, color="white")
c) mydog = SubClass(name="Penny", 3, "white")
d) mydog = SubClass("Penny", legs=3, color="white")