Sunday, July 20, 2008

Free e-book on java/Sun Certification

Ask e-book- yadav.ankur@rediffmail.com

Java Projects, Final Projects

Need project Contact achiever_ankur@yahoo.co.in

Friday, July 18, 2008

Answer to the questions

Ans 1 It will show compile time error
Ans 2 It will print good morning

Wednesday, July 16, 2008

Java question for interview

Q.1 Will the following code be complied without error?
float f=3.0
Q.2 What will be the output if following is typed on command line?
java myprog good morning
public class myprog{ 
public static void main(String argv[])
{ 
System.out.println(argv[2]) ;
}
}