A ABSTRACT FUNCTION CAN BE OVERRIDDEN BUT AN VIRTUAL FUNCTION CANNO...

3. A abstract function can be overridden but an virtual function cannot be overridden Question 129 What will be the output of the following snippet code? int i =12 ; object obj = i; i = 34; Console.WriteLine(obj);