jocelyynv2402 jocelyynv2402 22-04-2024 Engineering Answered What will this small program output? int a = 3; int b = 1;int c = 7; int x = 10; if (a <= b) { x = 15; } else if (a <= c) { x = 13; }else if (b <= c) { x = 17; } else { x = 12; } (x);