Question: Which of the following code segments does not increment num by 1? A. num++; B. num = num + 1; C. num += 1; D.
Which of the following code segments does not increment num by 1?
| A. | num++; | |
| B. | num = num + 1; | |
| C. | num += 1; | |
| D. | num.add(1); | |
| E. | ++num; |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
