136k views
3 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 Shahalpk
by
4.4k points

1 Answer

2 votes

Answer:

a=40,b=30,c=60

The answer is B

User Scott Veirs
by
3.9k points