K
Multiple choices 30/50
Answer (Choose 1 answer)
What will be the output of the following program?
A Runtime error
B. Sides: 4
C. Compile time error
D. Sides: 0
class Shape
{
public int Sides { get; set; } }
class Square: Shape
{
}
class Program
public static void Display (Square s) { Console.WriteLine($"Sides: (s.Sides)");
public static void Main()
Shape sq new Square();Sq.Sides = 4;
10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
43 44 45 46 47 48 49 50