Vidyalelo
C# Programming · Q72

Classes and Objects in C Sharp

Programming · C# Programming · question 72

Q72

What will be the output of the following C# code? class maths int i; public maths(int x) i = x; Console.WriteLine(" hello: "); class maths1 : maths public maths1(int x) :base(x) Console.WriteLine("bye"); class Program static void Main(string[] args) maths1 k = new maths1(12); Console.ReadLine();

A.
hello bye
Answer
B.
12 hello
C.
bye 12
D.
Compile time error

Answer: Option A

Solution

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