Question: What value is stored in num by this code segment? int a = 6; int b = 7; int num =0; if(a == b) num=2;
What value is stored in num by this code segment?
int a = 6;
int b = 7;
int num =0;
if(a == b)
num=2;
else
num=-2;
Question 7 options:
|
| 0 |
|
| -1 |
|
| 2 |
|
| -2 |
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
