Yahoo Answers is shutting down on May 4th, 2021 (Eastern Time) and beginning April 20th, 2021 (Eastern Time) the Yahoo Answers website will be in read-only mode. There will be no changes to other Yahoo properties or services, or your Yahoo account. You can find more information about the Yahoo Answers shutdown and how to download your data on this help page.
Trending News
Where I can teach myself Java online?
I need to make an Android application. Database kind of thing and I need to learn Java to do it. Where can i find good tutorials to help me with that?
2 Answers
- Anonymous10 years agoFavorite Answer
many Nptel courses are there which gives you Java tutorials.
just google nptel courses in google.
You will get all the information u need
Source(s): me - husoskiLv 710 years ago
You have two task here. The first is to learn the Java language. A good start, if you've already got some fundamental notion of programming and exposure to some other programming language, is the Java Tutorial site:
http://download.oracle.com/javase/tutorial/java/
If you're entirely new to programming, consider getting a book. "Head First Java, 2nd Ed." by Sierra and Bates looks pretty good for first-time programmers.
http://search.barnesandnoble.com/Head-First-Java/K...
For experienced programmers who want an in-depth understanding of Java, I recommend "Core Java, Volume I * Fundamentals, 8th Ed." by Horstmann and Cornell. Volume II is great for serious developers, but all the basics are covered in volume I.
http://www.barnesandnoble.com/w/core-java-volume-i...
Then you need to learn the Android APIs. Website tutorials should get you started. I always start with the folks that built the stuff I'm trying to learn. For Android, the starting place is:
...and click on Guide tab.
Have fun!