Java MCQ - English
Which of these coding types is used for data type characters in Java?
Home | Discussion ForumWhich of these coding types is used for data type characters in Java?
ASCII
ISO-LATIN-1
UNICODE
None of the mentioned
Answer : C
View More Related Question
1) How many primitive data types are there in Java?
2) Which class is a library of functions to perform arithmetic operations of BigInteger and BigDecimal?
3) What is the range of short data type in Java?
4) What is the output of below code snippet? enum Levels
{
private TOP,
public MEDIUM,
protected BOTTOM;
}
5) What is the output of this program?class mainclass {
public static void main(String args[])
{
boolean var1 = true;
boolean var2 = false;
if (var1)
System.out.println(var1);
else
System.out.println(var2);
}
}