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
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.

Latest posts by Tomcy John (see all)
- A Guide to Continuous Improvement for Architects - February 2, 2023
- Cloud-first Architecture Strategy - January 26, 2023
- Architecture Strategy and how to create One - January 24, 2023
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.
again
10.0/-0 doesn’t give runtime error.
or may be these are not valid for 1.6