What is the output of the following program if the parameter passing mechanism is: a) Pass by reference, b) Pass by value, c) Pass by value result int I=1; P(A, B) { B=B+1; A=A+1; I=I+1; print (A,