trose7794 trose7794 11-03-2024 Computers and Technology contestada What will be the value of x after the following code is executed?int x = 10;while (x < 100) { x = 10;}a) 90 b) 100 c) 110 d) This is an infinite loop.