Advertisements
Advertisements
प्रश्न
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);
विकल्प
20
2220
20 22
22
Advertisements
उत्तर
20 22
Explanation:
A string like "" added to number makes it a string. Hence 20 + " " + 22 gives 20 22.
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 = ‘t’;
res=Character. toUpperCase(ch);
Write a difference between the functions isUpperCase() and toUpperCase().
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()
What is the method to check whether a character is a letter or digit?
The method to convert a lowercase character to uppercase is ______.
A student is trying to convert the string present in x to a numerical value, so that he can find the square root of the converted value, However the code has an error. Name the error (syntax/logical/runtime). Correct the code so that it compiles and runs correctly.
String x="25";
int y=Double.parseDouble(x);
double r=Math.sqrt(y);
System.out.println(r);Define a class to accept a string and convert the same to uppercase, create and display the new string by replacing each vowel by immediate next character and every consonant by the previous character. The other characters remain the same.
Example: Input: #IMAGINATION@2024
Output: #JLBFJMBSJPM@2024
