AmbitionBox
Discover Best Places to work in India
Discover best places to work
Compare & find best workplace
Bring your workplace to life
Highlight your company's perks
Read reviews for 6L+ companies
Rate your former or current company
Discover salaries for 8L+ companies
Calculate your take home salary
Check your market value
Help other jobseekers
Read interviews for 90K+ companies
Interviews questions for 1K+ colleges
Contribute your interview questions
C# Programming
Which of these will happen if recursive method does not have a base case?
infinite loop condition occurrence
System gets hanged
After 10000 executions program will be automatically stopped.
None of the mentioned
If a recursive method does not have a base case which is necessary to meet the end of condition then an infinite loop occurs which results in stackoverflow exception error.
What is Recursion in CSharp defined as?
Recursion is another form of class
Recursion is another process of defining a method that calls other methods repeatedly
Recursion is a process of defining a method that calls itself repeatedly
Recursion is a process of defining a method that calls other methods which in turn calls this method
Recursion is the process of defining something in terms of itself. It allows us to define method that calls itself repeatedly until it meets some base case condition.
Which of these is not a correct statement?
A recursive method must have a base case
Recursion always uses stack
Recursion is always managed by C# Runtime environment
Recursive methods are faster that programmer written loop to call the function repeatedly using a stack
No matter whatever is the programming language recursion is always managed by operating system.
Which of these data types is used by operating system to manage the Recursion in Csharp?
Array
Queue
Tree
Stack
Answer: Option (D)
What will be the correct output the for the given code snippet?
class maths
{
int fact(int n)
int result;
if(n ==1)
return1;
result = fact(n -1)* n;
return result;
}
class Output
staticvoid main(String args[])
maths obj =new maths();
Console.WriteLine(obj.fact(1));
2
10
1
0
fact() calculates recursively the factorial of a number when n turns to be 1, base case is executed consecutively and hence 1 is returned. Output: 1
What will be the correct output for the given code snippet?
Console.WriteLine(obj.fact(4)*(3));
64
60
72
84
4! = 4 * 3 *2 * 1 = 24 * 3 = 72.Not factorial of 3 but just multiply the number with 3. Output : 72
Join India’s largest community to research company culture
Are you a student or working professional?
Student/Never worked
I am a student/I have never worked
Working Professional
I am working/I have worked before
What are your preferred job locations?
Popular Cities
Other Cities
Follow your preferred designations/job profiles
Suggestions based on your job profile
vs
Similar Companies