dommmo4466 dommmo4466 18-01-2024 Computers and Technology contestada Use the following code fragment to answer the question - If x is currently 0, a = 0, and b = -5, what will x become after the above statement is executed?if (a > 0)if (b < 0)x +=5;elseif (a > 5)x +=4;elsex =+3;elsex +=2;A) 0B) 2C) 3D) 4E) 5