wearenumberone689 wearenumberone689 30-03-2021 Computers and Technology contestada Consider the following code segment. int a = 0; int b = 3; while ((b != 0) && ((a / b) >= 0) { a = a + 2; b = b - 1; } What are the values of a and b after the while loop completes its execution? a = 4, b = 1 a = 0, b = 3 a = 6, b = 0 a = 8, b = -1