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) 0
b) 1
c) 2
d)3
e) 5