leximccomb6942 leximccomb6942 08-01-2024 Computers and Technology contestada Consider the following code segment.int x = 7;if (x < 7){x = 2 * x;}if (x % 3 == 1){x = x + 2;}System (3 * x);What is printed as a result of executing the code segment?A. 7B. 9C. 14D. 21E. 27