What is the output of the following code snippet? decimal roundedValue1 = Math.Ceiling(-2.5m); decimal roundedValue2 = Math.Ceiling(2.5m); Console.WriteLine(roundedValue1); Console.WriteLine(roundedValue2);
Correct Answer: -2 3
Explanation:
Note: This Question is unanswered, help us to find answer for this one
More C# MCQ Questions