hecombs8248 hecombs8248 08-01-2024 Mathematics contestada What will the value of x be after the following statements are executed?double a, b, c, x;a = 5;b = 3;c = 6;if ( a <= c ){x = 1;} else if ( c > b ) {x = 2;} else {x = 3;}a) 0b) 1c) 2d)3e) 5