✏️ Explanatory Question
char x='7'; y=Character.isLetter(x);
Data type of y is boolean and value is false. Character.isLetter() method checks if its argument is a letter or not and as 7 is a number not a letter hence it returns false.