F Find the output : function modify(a,b) { Integer c,d=2 c= a*d+ b return c } Function calculate () { Integer a = 5, b = 20, c Integer d= 10 c = modify (a, b); c = c+ d Print c } August 28, 2021 1 Min Read 0 235 August 28, 2021 1 Min Read 0 235 Answer : B . 40 Function and Scope Editor Continue Reading