tonykim6038 tonykim6038 02-07-2024 Engineering Answered What will be the value of x after the following code is executed?int x = 10, y = 20;while (y < 100){ x += y; y += 20;}A. 90B. 110C. 130D. 210