Study Material
Computer Applications
The statement i = i + 1 is equivalent to ...........
i++
i += 1
++i
All of these
Java Operators
32 Likes
Answer
All of these
Answered By
5 Likes
Related Questions
Which one of the following is not a binary operator?
View Answer
Bookmark Now
Which one of the following is not a valid operator in Java?
View Answer
Bookmark Now
For x = 5, the statement sum = ++x + 8 evaluates to ...........
View Answer
Bookmark Now
Assuming x = 1 with the following code snippet:
int y = --x;
Which one of the following is true?
View Answer
Bookmark Now