Question: Consider the following Java method: /** Returns true if c is a lower case letter */ public static boolean charIsLowerCaseLetter(char c) { return 'a'

Consider the following Java method:

/** Returns true if c is a lower case letter */ public static boolean charIsLowerCaseLetter(char c) { return 'a' <= c && c <= 'z'; } 

Without using the ! operator, how could you implement the following?

/** Returns true if c is not a lower case letter */ public static boolean charIsNotLowerCaseLetter(char c) { return ___________________; }

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!