BlueJ for ISCE Boards

Java programming comes naturally to some lucky few. But that's not the same for the majority of the population. Some need more help in understanding the concept than others. That's the reason why I created this blog. Going through my blog will help you get a better understanding of the concepts involved in Java programming.

This blog was made with ICSE students in mind. The programs I've written are the recurring questions in ICSE board exams. All the programming was written and compiled in BlueJ. In case you haven't got BlueJ to practise on, you can download it for free from here. Install the latest version of BlueJ and you're good to go.

Important programs to try out

1. Factorial of a number

2. Prime Number

3. Palindrome

4. Automorphic Number

5. Bubble Sort

6. Selection Sort

After you gain enough confidence, you can try out unsolved programming questions which are available on the internet. In case you have any doubts regarding the subject, feel free to drop a comment.

Happy coding and best wishes for your exams. 


Comments

  1. Is this Piglatin program correct?
    ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓ ↓

    import java.io.*;
    class Piglatin
    {
    public static void main(String args[])throws IOException
    {
    BufferedReader br =new BufferedReader(new InputStreamReader(System.in));
    System.out.print("Enter any word : ");
    String s=br.readLine();
    String s1,s2,s3;
    s=s.toUpperCase();
    int l=s.length();
    int i;
    char ch;
    for(i=0; i<l; i++)
    {
    ch=s.charAt(i);
    }
    if(ch=='A'||ch=='E'||ch=='I'||ch=='O'||ch=='U')
    {
    break;
    }
    for(i=0; i<l; i++)
    {
    s1=s.charAt(0,i);
    s2=s.charAt(i);
    s3=s2+s1+"AY";
    }
    System.out.println("The piglatin of the word"+s+"is : "+3);
    }
    }





    ReplyDelete

Post a Comment

Popular posts from this blog

Automorphic number

Bubble sort

Prime number