0 / 60 seg.

Consider the operation of the OR operator in this code:

int n = 10, m = 5;
boolean c1 = n > 5 || m > 10;
boolean c2 = n < 5 || m > 10;