junenguyen5380 junenguyen5380 18-01-2024 Computers and Technology contestada Given the following code, where x = 0, what is the resulting value of x after the for-loop terminates? for (int i = 0; i < 5; i++) x =+ 1; A) 4 B) 10 C) 0 D) 15 E) 5