Java MCQ - English
Which of these statements are incorrect?
Assignment operators are more efficiently implemented by Java run-time system than their equivalent long forms.
Assignment operators run faster than their equivalent long forms.
Assignment operators can be used only with numeric and character data type.
None
Answer : D
View More Related Question
1) Which of these statements are incorrect?
Assignment operators are more efficiently implemented by Java run-time system than their equivalent long forms.
Assignment operators run faster than their equivalent long forms.
Assignment operators can be used only with numeric and character data type.
None
View Answer
2) When the operators are having the same priority, they are evaluated from ………………………….. in the order they appear in the expression.
3) What is the output of the following program ?class Numbers{
public static void main(String args[])
{
int a=20, b=10;
if((a < b) && (b++ < 25))
{ System.out.println("This is any language logic");
}
System.out.println(b);
}
}
4) When one of the operands is real and the other is integer, the expression is called a ……………………. expression.
5) Which of these can be returned by the operator & ?