Post Pin

Java Programming with Passion Answers Revealed!

  Get Updates by Email or by RSS feed

I’ve been taking up Sang Shin’s Java Programming with Passion course as a refresher for me (since I’ve already learned Java in college but forgot almost everything XD). It is a very very good refresher course and though I have almost forgotten everything that I have learned before, it’s all coming back to me now (is that a song?). So if you are interested in Java and want to learn or you already know Java but want to do some refreshing, this is the course I would strongly suggest you take.

As all things, we learn by practicing. And as the saying goes, practice makes perfect. The course mentioned above has exercises and homeworks to be done. Do it and I guarantee you that in no time, Java would like be drinking water to you. Anyway, since I have already finished some of the homeworks, I will be posting the answers here. This is not to let you ‘cheat’ but to guide you once got lost and have trouble coming back to the right track.

Home work1001:

Getting to know your Java programming environment

Homework1002:

Java programming basics

Homework1004:

Getting input from keyboard

Homework1034:

Control Structure

Homework1036:

Java Array

Homework1038:

Command-line arguments

Homework1011:

Working with built-in Java classes

Homework1010:

Tour of java.lang.* and java.util.* classes

Once I finish the other exercises, I’ll post them here. If you find anything wrong or incorrect with the code, please let me know. Thanks.

Make sure to check out the site for more related information about Java Programming with Passion Answers Revealed! .

__ 

Related Posts

  • Muze Clothing Muze Clothing rocks. If you are a movie buff, then you would think the same way too. Imagine having your...
  • Drinking Cold Water After Meal = Cancer! Another interesting email I want to share. Everybody loves a sip of cold water after every meal BUT it is...
  • "Kwentong Langgam" Isang nakakatawa ngunit nakakalungkot na kuwento ang nakita ni Phaw sa peyups.com. Ganito ang panimula:  May nasalubong akong pulang langgam...
  • ASCII Art Looking for some ASCII Art? Well, you have one example above. But what is ASCII Art? In layman's terms, ASCII...
  • Diarrhea Treatment Last Wednesday night, I ate at McDonalds, Pioneer at Mandaluyong City. I ordered a cheesburger deluxe meal with a free...

Related Websites

  • Amy
    Thank you for sharing your homework.

    In Homework 1036 - Java Array, I think under the section
    // Compare the lengths of the first names between person1 and person2

    This line:
    longestName = (lengthOfFirstNameOfPerson1 > lengthOfFirstNameOfPerson3) ? names[0]:names[2];
    should be replaces by:
    longestName = (longestName.length() > lengthOfFirstNameOfPerson3) ? longestName:names[2];
  • Thanks, I enjoyed reading your post. It
  • Jon Carlson
    I was wondering if you have finished the homework for Lab 1027 which is about abstract classes and interfaces. I would really like to see how this one is done.
blog comments powered by Disqus