Answer
(a) The initializer name is incorrect for the class A and the variable is a local variable but it should be class variable.
(b) The setRadius method does not have self as a parameter and in the initializer the variable radius is defined as a local variable not as a class variable because it is not defined as self.radius
Work Step by Step
(a) The initializer name in python is not the same name as class but __init__ also the variable radius will be considered as local variable not class variable because it is not written as self.radius
(b) In python all class methods should have self as first parameter but the method setRadius does not have that also the variable radius will not be considered a class variable because it is not written as self.radius