The correct option is C Both time and space complexities are better in non-recursive than in recursive program
In general, in a recursive and non-recursive implementation of a problem(program) both time and space complexities are better in non-recursive than in recursive program. In some program recursive implementaion gives worst case scenario too. So, recursive implementation does not guarantee for best case all the time.
So, option (B) is correct.