Computer Science, asked by ashutosh4138, 10 months ago

answer anyone fast.......​

Attachments:

Answers

Answered by Sumanmi
1

The datatype is Boolean and output is false

Answered by siddhartharao77
0

Sample Program:

char x = '7';

y = Character.isLetter(x);

Explanation:

Datatype of x = char

If the datatype of y is Boolean, then the result will be false because here the character is not a letter.

If the datatype of y is int, then it will return compile time error.

Hope it helps!

Similar questions