Computer Applications
State whether the following statement is True or False :
Integer.toString() converts integer data to String.
Related Questions
State whether the following statement is True or False :
Array is a non-primitive data type.
State whether the following statement is True or False :
Class is a composite data type.
Find the output of the following program snippet:
char ch = '*'; boolean b = Character.isLetter(ch); System.out.println(b);
Find the output of the following program snippet:
char c = 'A'; int n = (int) c + 32; System.out.println((char)n);