Global
Guideline
Comprehensive Job Interviews
Home
Interview Questions
Online Quiz Tests
Blog
Contact Us
Close Menu
Copyright © 2005 - 2024. All Rights Reserved
Search
Home
Interviews
Core Java Programming
Java Classes
Java Classes Question:
Explain how to send email using java?
Tweet
Share
WhatsApp
Download PDF
Answer:
Please share your answers.
Download Java Classes PDF
Read All 76 Java Classes Questions
Previous Question
Next Question
What is Pre-emptive scheduling?
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