Computer Applications
The statement n += 4 is equivalent to:
- ++n
- n=n+4
- n+1
- none
Java Operators
214 Likes
Answer
n=n+4
Answered By
9 Likes
Related Questions
What will be the output of a & b in the following, if int a, b; a=10; b=a++;
What will be the output of a++ when int a = -1;
If int a = 25, b = 5, c = 0; what value is stored in c? When c = a % b;
What is the result of the following in Java statement?
int m=8; m*=8; System.out.println("The output =" + m);