Advertisements
Advertisements
प्रश्न
State the data type and value of res after the following is executed:
char ch = ‘t’;
res=Character. toUpperCase(ch);
Advertisements
उत्तर
int type and value of is 84.
APPEARS IN
संबंधित प्रश्न
Give the output of the following code:
String P = “20”, Q = “19”,
int a = Integer .parselnt(P);
int b = Integer. valueOf(Q);
System.out.println(a+””+b);
State the data type and value of res after the following is executed :
char ch = ‘9’;
res = Character. isDigit(ch)
State the number of bytes occupied by char and int data types.
Write a difference between the functions isUpperCase() and toUpperCase().
int res = ‘A’;
What is the value of res?
Write the return data type of the following function:
log( )
State one difference between the floating point literals float and double.
What is the data type returned by the library function?
compareTo()
Give the output of the following Character class method:
Character.toUpperCase('a')Predict the output of the following code snippet:
char ch='B';
char chr=Character.toLowerCase(ch);
int n=(int)chr-10;
System.out.println((char)n+"\t"+chr);
