which book is the best for preparing for SCWCD 1.5
Answers were Sorted based on User's Feedback
Answer / nitin jadav
if you want to read just for exam perspective then read
only SCWCD1.5 by Kathy Sierra and if you want to increase
your knowledge then first read Head First Servlets & JSP
then read SCWCD1.5 by Kathy Sierra.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / satya
you can check
http://www.techfaq360.com/tutorial/scwcd/scwcd.jsp
I found this is very good
| Is This Answer Correct ? | 0 Yes | 0 No |
what is difference between struts1.2 and struts2.0
which book is the best for preparing for SCWCD 1.5
How do I find jre path in windows?
What are the queues in the java collection framework? : java collections
what is difference between business deligate and session facade ?
How to call the m1() method of Base class in below snippet ? class Base { public void m1() { System.out.println("Base m1 "); } public void m2() { System.out.println("Base m1 "); } } ====================== class Derived extends Base { public void m1() { System.out.println("Derived m1"); } public void m3() { System.out.println("Derived m3"); } public static void main(String[] args) { Base ob=new Derived(); ob.m1(); //System.out.println("Hello World!"+ob.m1()); } }
HOW MUCH PERCENTAGE WE DEDUCT FOR OUR SUPPLIERS OR OTHER PROFESSIONALS
What is need of DAO? Write one simple DAO example?
Which of the following declaration is wrong? int i=45; float j = 45.0; double k=45.0;
whatis arguments &what is default argument
What is iterator in the java collections framework? : java collections
What are the different types of ways where you can iterate over a list? : java collections