gabbyx52 gabbyx52 27-02-2024 Engineering contestada What will be the value of x after the following code is executed?int x = 10;while (x < 100){ x += 10;}a. 90b. 100c. 110d. This is an infinite loop.