hiii friends i have cleared scjp1.4 with 91%.I would like to know whether this can get me a job.i would like to know how much time it would take to prepare for web component developer exam?pls suggest
any exception thrown from a catch block will not be caught in subsequent catch blocks.and while returning return value of finally block hides any previous value
will this compile? class A { int n; A() { this(7); } A(int a) { this(this); } A(A ob) {n=ob.n;} } class B { public static void main(String args[]) { A obj=new A(); } }
the answer is false. && is shortcircuit operator.once the first condition is evaluated as fasle it will not check the second condition. args>4 is false because only commandline parameters are passed