Advertisements
Advertisements
Question
State the data type and value of res after the following is executed:
char ch = ‘t’;
res=Character. toUpperCase(ch);
Advertisements
Solution
int type and value of is 84.
APPEARS IN
RELATED QUESTIONS
Write the memory capacity (storage size) of short and float data type in bytes.
Differentiate between if else if and switch-case statements.
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 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.isLetterOrDigit('W')What is the method to check whether a character is a letter or digit?
