Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


Explain recursion through a program?



Explain recursion through a program?..

Answer / Deepshikha Singh

Recursion is a method of solving problems where the solution depends on solutions to smaller instances of the same problem. Here's an example of factorial recursion in Scala: 'def factorial(n: Int): Int = if (n <= 1) 1 else n * factorial(n - 1)'.

Is This Answer Correct ?    0 Yes 0 No

Post New Answer

More Scala Interview Questions

What is the utilization of tuples in scala?

1 Answers  


What are the available Build Tools to develop Play and Scala based Applications?

1 Answers  


What is scala map function?

1 Answers  


What is lazy val in scala?

1 Answers  


List the advantages of using scala over other functional programming languages.

1 Answers  


Like Hibernate for Java-based applications, What are the Popular ORM Frameworks available to use in Play/Scala based applications?

1 Answers  


What do you mean by a case class in scala?

1 Answers  


Explain the functionality of yield?

1 Answers  


How many public class files are possible to define in Scala source file?

1 Answers  


What is an ofdim method in scala?

1 Answers  


What are the Java’s OOP constructs not supported by Scala? What are the Scala’s OOP constructs not supported by Java? What are the new OOPs constructs introduced by Scala, but not supported by Java?

1 Answers  


What is Range in Scala? How to create a Range in Scala?

1 Answers  


Categories