Skip to main content

Posts

Showing posts from September, 2018

Write a Program in Java to Print Fibonacci Series | ICSE

I CSE Program /*     A Program which prints Fibonacci Series (0 1 1 2 3 5 8...) */     import java.util.Scanner ;    class Fibonacci { public static void main ( String [] args ) { Scanner sc = new Scanner( System .in);   int n; long first, second, third; first = 0; second = 1; third = 0; //initializing the variables                                                                                                                   System .out. println (" Enter the limit of the Series : "); //asking for the Series Limit n...

Java for the ISC Examinations

Java for the ISC Examinations Introducing Java Java Fundamentals ICSE Questions on Java (Solved) Output Questions (Solved) Java Programs for ICSE           * Write a Program in Java to Print Fibonacci Series.           * Write a Program in  Java to check for a Palindrome Number.           * Write a Program in Java to check whether number is Pronic or not.           * Write a Program in Java to  find whether a given number is Odd or Even or Prime.           * Write a Program in Java to Print Table of a Given Number.           * Java Programs for ISC           *            *           *           *           *           *