Write correct, successfully-compiling, correctly-running programs to accomplish the following tasks:
  1. Print out some basic information about yourself, like so (for each line, use print for the first half and println for the second):
               Name:	John Doe
                Age:	21
        High School:	Something High
              Major:	Computer Science
            Hobbies:	Fishing, woodcarving, painting
    Favorite Animal:	Zebra
    				
    You must get the formatting right, with all the colons aligned, a tab over, and the information pieces all aligned. You don't have to use the exact same fields (major, hobbies, etc.) that I do, but there should be at least 5-6.
  2. Print out alternating parallelograms as shown below.
    **********
     *        *
      *        *
       *        *
        **********
        **********
       *        *
      *        *
     *        *
    **********
    **********
     *        *
      *        *
       *        *
        **********
        **********
       *        *
      *        *
     *        *
    **********
    **********
     *        *
      *        *
       *        *
        **********
    
  3. Pick out a short poem you like or some lyrics from a song, 5 to 7 lines of varying lengths, and print them as centered as you can. On the next line, print the title and author, right-justified. For example:
    If I can stop one heart from breaking,
          I shall not live in vain;
      If I can ease one life the aching,
              Or cool one pain,
         Or help one fainting robin
             Unto his nest again,
          I shall not live in vain.
            --"If I Can Stop One Heart From Breaking," Emily Dickinson
    
In at least 150 words, please address the following questions:
  1. How did the process of creating these programs go for you?
  2. What were your main challenges and how did you overcome them?
  3. What did you learn that may be of use as you move along in this class?