GeekInterview.com
Series: Subject: Topic:
Question: 39 of 78

What is the output of the following? // A simple example of recursion.class Factorial { // this is a recursive method int fact(int n) { int result; if(n==1) return 1; result = fact(n-1) * n; return result; }} class Recursion { public static void main(String args[]) { Factorial f = new Factorial(); System.out.println("Factorial of 3 is " + f.fact(3)); }}

A) Factorial of 3 is 3
B) Factorial of 3 is 6
C) Factorial of 3 is 9
D) None of the above
Asked by: Interview Candidate | Asked on: Dec 10th, 2005
Showing Answers 1 - 6 of 6 Answers
Ali

Answered On : Dec 21st, 2005

D) None of the above

Exception in thread "main" java.lang.NoSuchMethodError: main

  
Login to rate this answer.
RAMESH

Answered On : Feb 24th, 2006

B). Factorial of 3 is 6

  
Login to rate this answer.
supriya ahire

Answered On : Mar 22nd, 2006

Ans is (d)none of the above

 b'coz we r not defining else part of the if statement.

  acrding to me it's a syntax error.

  
Login to rate this answer.
vtheivamani

Answered On : Dec 20th, 2006

View all answers by vtheivamani

fact 3 is 6....its correct..if statement without else is also possible..

  
Login to rate this answer.
Sheriffh

Answered On : Feb 24th, 2009

View all answers by Sheriffh

D)None of the above

  
Login to rate this answer.
r.praveenkumar

Answered On : Feb 25th, 2009

View all answers by r.praveenkumar

Ans is (d) None of the above

Because we are not defining else part of the if statement.

Unreachable code error because of the absence of else part.

  
Login to rate this answer.

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

Related Open Questions

Ads

Connect

twitter fb Linkedin GPlus RSS

Ads

Interview Question

 Ask Interview Question?

 

Latest Questions

Ads

Interview & Career Tips

Get invaluable Interview and Career Tips delivered directly to your inbox. Get your news alert set up today, Once you confirm your Email subscription, you will be able to download Job Inteview Questions Ebook . Please contact me if you there is any issue with the download.