adplus-dvertising
frame-decoration

Question

What is the output of the code ?
static void Main(string[] args)
 {
     m();
     Console.ReadLine();
 }
 static void m()
 {
     Console.WriteLine("HI");
     m();
 }

a.

HI HI HI

b.

HI

c.

Stack overflow exception

d.

Compile time error

Answer: (c).Stack overflow exception

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of the code ?

Similar Questions

Discover Related MCQs

Q. When a function fun() is to receive an int, a single & a double and it is to return a decimal, then the correct way of defining this function is?

Q. How many values does a function return?

Q. Which return statement correctly returns the output:

Q. Number of constructors a class can define is ?

Q. Correct statement about constructors in C#.NET is ?

Q. Which among the following is the correct statement :
Constructors are used to

Q. Can the method add() be overloaded in the following ways in C#?

public int add() { }
public float add(){ }

Q. Which of the following statements is correct about constructors in C#.NET?

Q. What is the return type of constructors?

Q. Which method has the same name as that of its class?

Q. Which operator among the following signifies the destructor operator?

Q. The method called by clients of a class to explicitly release any resources like network,connection,open files etc.When the object is no longer required?

Q. Name a method which has the same name as that of class and which is used to destroy objects also called automatically when application is finally on process of being getting terminated.

Q. Operator used to free the memory when memory is allocated ?

Q. Select wrong statement about destructor in C#?

Q. What is the return type of destructor ?

Q. Which among these access specifiers should be used for main() method?

Q. Which of these is used as default for a member of a class if no access specifier is used for it?

Q. What is the process by which we can control what parts of a program can access the members of a class?

Q. Which of these base class are accessible to the derived class members?