Assign to the boolean variable ‘possibleCandidate’ the value false if the int variable ‘n’ is even and greater than 2, or if the variable ‘n’ is less than or equal to 0; otherwise, assign true to ‘possibleCandidate’.

java

LANGUAGE: JAVA CHALLENGE: Assign to the boolean variable ‘possibleCandidate’ the value false if the int variable ‘n’ is even and greater than 2, or if the variable ‘n’ is less than or equal to 0; otherwise, assign true to ‘possibleCandidate’. Assume ‘possibleCandidate’ and ‘n’ are already declared and ‘n’ assigned a value .

Read More