Advertisements
Advertisements
प्रश्न
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);
उत्तर
2019
APPEARS IN
संबंधित प्रश्न
Differentiate between if else if and switch-case statements.
State the data type and value of res after the following is executed :
char ch = ‘9’;
res = Character. isDigit(ch)
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?
System.out.println(“The king said\”Begin at the beginning!\“to me.”);
Predict the output of the following code snippet: String P = "20", Q = "22";
int a = Integer.parseInt(P);
int b = Integer.value0f(Q);
System.out.println(a + " " + b);
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?
The method to convert a lowercase character to uppercase is ______.
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);