Hi,
I do not know what "previously declared" means. I am in the process of completing a very simple short answer homework assignment. Short answer.. Write a line of code to print each of the following in the command prompt window:
a. your name
b. a previously declared String named lastName
c. a blank line
d. the name of your instructor tabbed 24 characters to the right.
My response:
a: System.out.println("Taylor Reichert");
b: String = lastName();
c: System.out.println();
d: System.out.println("\t\t\tJane Doe");
Just looking for a little guidance, general help understanding letter b. and the term "previously declared". Thank you in advance, Taylor.