LilE6738 LilE6738 27-02-2024 Engineering contestada What is the value of result after the following Java statements execute? int a, b, c, d, result; a = 4; b= 12; C = 37; d=51; result = d % a*c+ a % b + a; A. 119 B. 51 C. 127 D. 59