174,734 views
25 votes
25 votes
Analyze the code and identity the value of variable a,b and c after the code execution. int a=40, b=50, c=60; if(! (a>=40)) b=30; c=70; A. A = 40, b = 50, c = 70 B. A = 40, b = 30, c = 70 C. A = 40, b = 50, c = 60 Da = 40, b = 30, c = 60

User Joseph Lin
by
3.5k points

1 Answer

26 votes
26 votes

Answer:

a=40,b=30,c=60

The answer is B

User Davion
by
2.8k points