C Sharp (C#) - Polymorphism and Abstract Classes
What is the output of the following code?
object obj = "hello"; string s = obj as string; Console.WriteLine(s != null ? s.ToUpper() : "null");
