Computer Applications
Write the return type of the following library functions:
- isLetterOrDigit(char)
- replace(char, char)
Java Library Classes
ICSE 2016
10 Likes
Answer
- boolean
- String
Answered By
8 Likes
Related Questions
State whether the following statement is True or False :
Class is a composite data type.
Write the purpose of the function Character.isWhitespace()
Differentiate between boxing and unboxing.
String s1 = "45.50"; String s2 = "54.50"; double d1=Double.parseDouble(s1); double d2=Double.parseDouble(s2); int x= (int)(d1+d2);
What is value of x?