Advertisements
Advertisements
Question
Give the output of the following Character class method:
Character.toUpperCase('a')
Solution
A
Explanation:
The toUpperCase() function converts an alphabet to uppercase.
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.
State the number of bytes occupied by char and int data types.
int res = ‘A’;
What is the value of res?
Write a program to accept a number and check and display whether it is a Niven number or not.
(Niven number is that number which is divisible by its sum of digits).
Example:
Consider the number 126.
The Sum of its digits is 1+2+6 = 9 and 126 is divisible by 9.
State one difference between the floating point literals float and double.
What is the data type returned by the library function?
compareTo()
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')
Write the value of n after execution:
char ch = 'd';
int n = ch + 5;