blackberri5696 blackberri5696 16-01-2024 Computers and Technology contestada Consider the following code segment: int x = 7; if (x < 7) x = 2 * x; if (x == 1) x = x * 2; (3 * x); What is printed as a result of executing the code segment?