Please login to post your comments.
What is the difference between / and % operator?
What will be the output of the following code?
int k=5, j=9;
k += k++ - ++j + k;
System.out.println("k="+k);
System.out.println("j="+j);
Write an expression in Java for
z = 5x3 + 2y / x + y
Give one point of difference between unary and binary operators.