Latest DATA STRUCTURE Aptitude Question SOLUTION: Consider the following code: function modify(w,u) { w = w + 2 u = u - 3 return (w - u) } function calculate( ) { integer a = 10, b = 20, c c = modify(a, b); print a print space pri