Vidyalelo
C# Programming · Q95

Classes and Objects in C Sharp

Programming · C# Programming · question 95

Q95

What will be the output of the following C# code? static void Main(string[] args) int x = 4 ,b = 2; x -= b/= x * b; Console.WriteLine(x + " " + b); Console.ReadLine();

A.
4 2
B.
0 4
C.
4 0
Answer
D.
2 2

Answer: Option C

Solution

Answer: Option C
No explanation is given for this question Let's Discuss on Board