vinod awar

Greenhorn
+ Follow
since Jan 01, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by vinod awar

i have cleared the scjp. and now i want to learn servlets and jsp can u please suggest a good book for that.
19 years ago
JSP
hiii friends, i have cleared the scjp i would like to know, is there any website which maintains the results of all those who have cleared the exam?
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
thank u javaranch.i have cleared scjp with 91%.
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