Advertisements
Advertisements
प्रश्न
Give the output of the following Character class method:
Character.toUpperCase('a')
उत्तर
A
Explanation:
The toUpperCase() function converts an alphabet to uppercase.
APPEARS IN
संबंधित प्रश्न
Write the memory capacity (storage size) of short and float data type in bytes.
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.
State the data type and value of res after the following is executed:
char ch = ‘t’;
res=Character. toUpperCase(ch);
Write the return data type of the following function:
log( )
What will be the output when the following code segment is executed?
String s = “1001”;
int x = Integer. valueOf(s);
double y = Double.valueOf(s);
System.out.println(“x=”+x);
System.out.println(“y=”+y);
Give the output of the following code.
String A = "26.0", B= "74.0";
double C = Double.parseDouble(A);
double D = Double.parseDouble(B);
System.out.println((C+D));
Write the value of n after execution:
char ch = 'd';
int n = ch + 5;
What is the method to check whether a character is a letter or digit?
The method to convert a lowercase character to uppercase is ______.