Don't apologize for being in a beginner class in college... We all start in the same place, a desire to know more... You have to begin somewhere.
Yes! A loop is an excellent choice... So, we have that figured out.
Okay... lets figure out what we're going to do for step 2.
Display the entire array.
How will we do that? Another loop? Perfect... We know how we're going to do that.
Now, on to step 3. Let's figure that out...
Display all capital letters or none in the array.
Okay, this ones a little tougher... Again we can jump to our friend the loop for a solution.
This time, instead of a simple print, or input... you get to show off your talent. As you traverse through this array, you only need to concern yourself with uppercase letters.
For that, we use the American Standard Code for Information Interchange (Ascii for short)
Each symbol, number, upper and lower case letter, and so on are represented by a number.
That's a good t hing to know in this case. You can see the table here:
http://www.ascii-code.com/ Now in this section, you may want to use your knowledge of ascii tables, IF statements, perhaps the else command and loops.
This should carry you all the way to converting upper to lower and viceversa...