Computer Science, asked by aditidubey412, 6 months ago

c. System.out.println((int)Character.to LowerCase(‘B’));​

Answers

Answered by anindyaadhikari13
1

Question:-

  • Write the output of the following code.

Solution:-

Given code,

System.out.println((int)Character.toLowerCase(‘B’));

Here, 'B' is converted to lower case.

ASCII value of 'b' is 98.

Output:-

98

Similar questions