Ambermarie472 Ambermarie472 07-02-2024 Computers and Technology contestada What is the result when the following code is rundouble x = 1;double y = 1;int i = 0;do{y = x / 2;x = x + y;i = i + 1;}while (x < 2.5);System (i + " ");a) 1b) 2c) 3d) 4