Func1int n if n 0 return True else return func2nl func2Cint
Solution
a) func2(4)
    this function call will result in false by recursively calling func2(4)->func1(3)->func2(2)->func1(1)->func2(0)
 b)func1(4)
 this function call will result in true value by recursively calling func1(4)->func2(3)->func1(2)->func2(1)->func1(0)
 
 c) func1- tests whether the number is even or not
 func2-tests whether the given number is odd or not
 
 for further queries kindly get back

