Certification

SCJP Certification Resources

This section of the website gives you various resources and samples for the various certifications that are available in the Java world. Yes, i do know that its quite huge and i wouldn’t be able to even scratch the top-surface. But whatever resources which i have, which i feel good for certification will be shared in this section.

SCJP Quick Notes

Basic Java FAQ – Part 1

Basic Java FAQ – Part 2

SCJP Mock Exam

Page Visitors: 416

The following two tabs change content below.
Tomcy John

Tomcy John

Blogger & Author at javacodebook
He is an Enterprise Java Specialist holding a degree in Engineering (B-Tech) with over 10 years of experience in several industries. He's currently working as Principal Architect at Emirates Group IT since 2005. Prior to this he has worked with Oracle Corporation and Ernst & Young. His main specialization is on various web technologies and acts as chief mentor and Architect to facilitate incorporating Spring as Corporate Standard in the organization.
Tomcy John

Latest posts by Tomcy John (see all)

3 thoughts on “Certification

  1. Hi,
    some of the answers seems to be wrong. please check.
    Eg:
    public static void main(String[] args){
    int[] a = {1};
    Test t = new Test();
    t.increment(a);
    System.out.println(a[a.length – 1]);
    }
    void increment(int[] i){
    i[i.length – 1]++;
    }
    no exception. it prints 2.

    byte b = 128;
    char c =’A’;

    Second line is the valid declaration. not first.

Leave a Reply

Your email address will not be published. Required fields are marked *