Which of the following method definitions is equivalent to the one below (i.e. returns the same value in every possible case)? 
a) def example_method(): return 42 
b) def example_method(): return 42 
c) def example_method(): return True 
d) def example_method(): return None