write the output of the following program code :-
char c = 'a';
if (c>= 'a' && c<= 'z')
{
System.out.println(Lowercase)
}
System.out.prinln(Uppercase)
Answers
Answered by
0
Explanation:
Input: ch = 'A'
Output: A is an UpperCase character
Input: ch = 'a'
Output: a is an LowerCase character
Input: ch = '0'
Output: 0 is not an aplhabetic character
Answered by
1
Enter a character: *
* is not an alphabet
May be this answer.
Similar questions