Observe the following statements and decide whether the variable result’s value is TRUE or FALSE.

Given that:

    int x = -77;

    int z = 43;

result = (z < x && 1 != 10) ? true : false;

result = 90 < x || -1 < z;

#OED​