Vidyalelo
C# Programming · Q56

Operators and Expressions in C Sharp

Programming · C# Programming · question 56

Q56

Check the following C# code whether the given relation operator works according to the if condition or not. static void Main(string[] args) int a = 10; int b = 5; int c = 12; int e = 8; int d; d = Convert.ToInt32((a * (c - b) / e + (b + c)) <= (e * (c + a) / (b + c) + a)); Console.WriteLine(d); if (d == 1) Console.WriteLine("C# is great language!"); Console.WriteLine((a * (c - b) / e + (b + c))); else Console.WriteLine("harsh is not great language!"); Console.WriteLine((e * (c + a) / (b + c) + a));

A.
0
C# is great!
20
B.
0
C# is not great!
25
C.
0
C# is great!
25
D.
0
C# is not great!
20
Answer

Answer: Option D

Solution

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