Explain recursion with an example.
Answer / nashiinformaticssolutions
o Recursion is a technique where a function calls itself to solve smaller sub-problems.
8. def factorial(n):
9. if n == 1:
10. return 1
11. else:
12. return n * factorial(n - 1)
13. print(factorial(5)) # Output: 120
Is This Answer Correct ? | 0 Yes | 0 No |
1Q) your current CTC (current taking currency)? 2Q) Your take home salary?(Monthly Drawing amount, According to your payslips/bank statement) 3Q) Your Expected CTC? 4Q) Your home take salary?
To sorting array of 10 elements which sorting is best a)selection b)bubble c)tree sort
What are the compilers of JAVA and .NET Programming languages?
what are all the validation we need to perform in data stage?
Write a program to reverse a number?
Diff between %let and Call symput?
Find out the roles which gives access to all tables in SAP? Thanks in advance.
Difference between debugging, running, executing of an application
What are the other ways to create an object with out calling new keyword in java?
what is programmable BIST in today ic design
How do you pass variables forwrd to future CECI sessions
If i have a dataset queried from Sql and I would like to insert the dataset into a specific node in an xml document how do I do this