blackberri5696 blackberri5696 Today at 2:46 PM Computers and Technology Answered 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?