Quiz:

Write your answers in a text file. Include your name and UIN at the beginning of the file.
Turn in using:

turnin -c cs102 -p quiz1 textFileName

Question 1 :
Can a Java program have two different variables with the names aVariable and avariable?

Question 2 :
Write Java statements that will cause the following to be written to the screen:

Once upon a time,
there were three little programmers.

Question 3 :
What is the output produced by the following statements?

String s = "Hello" + "" + "Joe";
System.out.println(s)
;