c) What will be the output if value 2 points
of ch='d'
if( ch>='a' && ch<='z')
System.out.print( (int)ch );
else if( ch>='2' && ch<='9')
System.out.print( "ASCII value");
else
System.out.print(ch);
Answers
Answered by
0
Answer:
100
Explanation:
it will come in the first loop of if() since it lies between a and z.
hope u like this plz mark me as branilist
Similar questions