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; } }
1 4237Post New iGate C Sharp Interview Questions
Explain how long are locks retained within the repeatable_read and serializable isolation levels, during a read operation with row-level locking?
What are the design resources sub theme will inherit and will not inherit?
Can you drag and drop existing SQL structures directly onto a form?
Where does the Kotlin run and what is the entry point of Kotlin?
our kks tagging is crossing more than 12 character please suggest how to take tags in the DCS
Can you edit an apex trigger/ apex class in production environment? Can you edit a visualforce page in production environment?
Is django popular python?
How can you store the data in spark?
How can we define an mm module? What is its importance in sap r/3?
What radioactive isotope of this alkaline earth element formed as a fission product of uranium and is of particular importance because it is assimilated in the body much like calcium?
How do you select multiple files?
Why hybrid clouds are so important?
Can we have multiple catch block for a try block?
When To use HashTable In C#
What is the jQuery code to select all links inside the paragraph?