what will be the output of the given below coding.
using System;

public class Exercise
{
static void OddNumbers(int a)
{
if (a >= 1)
{
Console.Write("{0}, ", a);
a -= 2;
OddNumbers(a);
}
}

public static int Main()
{
const int Number = 9;

Console.WriteLine("Odd Numbers");
OddNumbers(Number);

Console.WriteLine();
return 0;
}
}



what will be the output of the given below coding. using System; public class Exercise { s..

Answer / nitish yadav

9,7,5,3,1

Is This Answer Correct ?    16 Yes 1 No

Post New Answer

More C Sharp Interview Questions

Why linq is having select clause at the end?

0 Answers  


Explain deadlock?

0 Answers  


Can you have more than one namespace in c#?

0 Answers  


what is IEquatable

0 Answers   Wipro,


What is uint64?

0 Answers  


What are constants in c#?

0 Answers  


Can I use parseint?

0 Answers  


Why would you use a class property in c#?

0 Answers  


Trace the O/p for a program on inheritance and Polymorphism. 3 classes A,B,C A with two methods public virtual SomeMethodA public virtual SomemoreMethodA B:A overide SomeMethodA C:B new Method SomeMethodA override SomeMoreMethodA main method { b new instance of B b.SomeMethodA b.SomeMoreMethodA b1 new instance of C b1.SomeMethodA b1.SomeMoreMethodA }

2 Answers   Proteans,


What is iqueryable?

0 Answers  


Explain About sn.exe

0 Answers  


What is a decimal c#?

0 Answers  


Categories