A - Which of the following arithmetic expressions is identical to the expression a += b * c
?
a = (a + b) * c
a = b * c
a = a + b * c
a = ++b * c
- None of the above
B - Which of these following expressions is wrong ?
c=a+b
a+b=c
a=b+c
c+=a+b
- None of the above
Apparently the answers are A = 3 and B = 2, would someone please explain how these are the answers. I believe these questions are related to C#.