awesomegamerlikeboss awesomegamerlikeboss 09-07-2021 Mathematics contestada The programming code below shows an ''if-else'' function. After the code is run, the variable ''y'' is equal to _______. int x, y; x = 0; y = 0; if (x < 0) { y = y + 1; } else { y = y + 2; }