Question:
How to start studying advanced java (J2EE)?
Angel
2012-11-25 07:24:14 UTC
Hi there,I am computer Engineering graduate,I studied and developed core java codes in all 4 years of my engineering,Now as my new job requirement I need to study advance java(J2EE),I have just heard the terms web services,java beans,Spring,Hibernate and struts..please tell me how exactly to start learnin these and also the order in which they should be studied.
Thanks
Four answers:
2012-11-25 08:24:34 UTC
Find any good institute around you...so you'll get certificate (which is also v. imp) as well as learning. For it get help from your friends. If you don't wanna join then get any good book plus there is internet always for ya. ;



"THE COMPLETE REFERENCE, JAVA 2, fourth edition" by Herb Schildt. it's a good book try..
Fredney
2012-11-26 22:39:43 UTC
Try visiting this site for your J2EE concerns: http://www.netwind.com/
SaSoft
2012-11-25 08:25:22 UTC
At ReliSource, many of the times I am involved in the hiring process and need to take several interviews per week/month. Over the last two years, I’m observing one unfortunate truth which is: Bangladesh is lacking enough skilled programmers. Some people have talked about this issue previously and I think it’s time to take some real steps to improve the situation so that we do not face a disaster in the near future.

I’m putting some suggestions here for the fresh graduates and the college freshmen on how to become a good programmer.

In my own definition, a fresh graduate good/skilled programmer should have the followings:

1. Strong skill of one or more good languages like C++, Java and C#.

a. Must have strong skills with control structures. Don’t mess up if you’re asked to print out triangle or other shaped piles of ‘x’s with loops.

b. Must have strong skills with recursion. You must know how to transform a looped task into a recursive one and vice versa, for example: multiplication using addition recursively.

c. If your language is C/C++, you must know how to play with pointers and references.

d. Understand pass by value and reference.

e. Clearly understand scopes and memory allocation, de-allocation. Know when a object is destroyed and when to destroy.

f. Know the usage of all operators including bit-wise ones.

2. In-depth knowledge of OOP.

a. Only being able to write classes and doing encapsulation and inheritance is not what you should call good OOP.

b. Clearly understand how function overloading, overriding, polymorphism works.

c. Clearly understand how constructor/destructor (if any) works with inheritance.

d. Clearly know the difference and use of Interfaces and Abstract classes.

e. Know how to overload operators. Why and how copy constructor is defined/used.

3. Know common data structures

a. At least know the common data structures like stack, queue, linked list, doubly linked list (know circular version of all of them) and trees.

b. Be a skilled implementer of any of those, have clear concept of how push, pop, add, delete, peek etc method works on those data structures.

4. Know most common algorithms well

a. You don’t need to memorize pseudo codes line by line but you need to have clear concept of most common algorithms of sorting(bubble, quick, merge, heap, bucket, etc), searching (including DFS, BFS), etc.

b. As a fresher you must know their time and space complexities, pitfalls and improvements (if any).

5. General computing concepts:

a. Know processes and threads, how are they related to each other, how to program them, etc.

b. Understand TCP/IP: Don’t think it’s only the network administrator’s task to understand TCP/IP. All programmers ever doing any network or web programming should have clear TCP/IP concepts and understanding.

6. Be skilled in debugging in IDEs:

a. Be skilled in any of Visual Studio/Visual Studio.Net, Eclipse, Netbeans, KDevelop, etc.

b. Know how to debug your code.

7. Have basic knowledge of Software Engineering and SDLC.

Some advice for college freshmen:

1. Start with C++ or Java, avoid starting with scripting languages:

a. If you’re learning programming for the first time, avoid starting with scripting or loosely typed languages like: PHP, ASP, Perl, etc or Visual Basic. It may destroy your understanding of program execution, data types, memory allocation, etc.

b. Start with C++ or Java. If you want to me to be specific, start with C++, you’ll love it for the rest of your life.. :) It’ll be easier for you to learn (almost) any other language (like: C#, PHP, ASP, etc).

c. If you ask, do you need to know C to start with C++? Or should you learn C first and then C++? C definitely helps a lot for learning C++ but it's not mandatory to start with C.

2. If you want to be a good programmer, keep on coding at least 20 hours a week for the next 4 years :).

3. Never stop learning new technologies that are coming out everyday.

4. Know some of the many languages/technologies but be master of one. Know at least one language very well.

Good luck!
2012-11-25 07:58:06 UTC
the only wat is to read the relevant bks and learn the examples on the net and try out all the required library functions. this is the only way out. i know, internet is full of wrong information to give to people.


This content was originally posted on Y! Answers, a Q&A website that shut down in 2021.
Loading...