Negation Operator in 'if' Statement (NOIS)

Description:

The negation operator slows down the readability of the program, so it is recommended that it should not be used frequently.

Example:

boolean isOk = verifySomewhat()
if (  !isOk  ) 
    return 0;
else
    return 1;