guest9991 guest9991 11-01-2024 Computers and Technology contestada What is the output of the following code snippet? static int puzzle(int x) if (x > 20) x -= 2; else if (x == 0) x = 4; // line 7 return x;