Analyze the NOT operator in this Java code:
int n = 10; boolean c1 = n > 5; boolean c2 = !c1;
c1 is false, c2 is true
Both c1 and c2 are true
Both c1 and c2 are false
c1 is true, c2 is false