Computer Applications
Find the output of the following program snippet:
char ch = 'A';
char chr = Character.toLowerCase(ch);
int n = (int)chr-32;
System.out.println((char)n + "\t" + chr);
Java
Java Library Classes
71 Likes
Answer
A a
Working
Character.toLowerCase()
converts 'A' to 'a'. ASCII code of 'a' is 97. n
becomes 65 — (int)chr-32
⇒ 97 - 32 ⇒ 65. 65 is the ASCII code of 'A'.
Answered By
35 Likes
Related Questions
Find the output of the following program snippet:
char c = 'B'; int i = 4; System.out.println(c+i); System.out.println((int)c+i);
Find the output of the following program snippet:
char ch = 'y'; char chr = Character.toUpperCase(ch); int p = (int) chr; System.out.println(chr + "\t" + p);
Find the output of the following program snippet:
int n = 97; char ch = Character.toUpperCase((char)n); System.out.println(ch + " Great Victory");
Find the output of the following program snippet:
char ch = 'x'; int n = 5; n = n + (int)ch; char c = (char)n; System.out.println((char)((int)c-26));