Preparing For Assignment Submit Example
Note that this is an example submit. Your actual directories will vary per the specific assignment write-up.
- We will pretend we finished our work for "Assignment 99".
- So now we want to submit the work for this assignment.
- We are assuming our Programmer-Name is "Yaping Deng".
Add the following directories and empty files to your "Working directory" (any working directory on your computer):
Yaping Deng
Assignment 99
Rectangle.java
RectangleTest.java
Your actual directories will vary per the specific assignment write-up.
Submission Format:
- Your submitted root directory should be the 'name directory'
- Then, under the root folder, include a folder named 'Assignment??'
- Under the assignment subdirectory should be a file readme.txt
- Add a short note in readme.txt about your files (include instructions on how to use the files; e.g. say run the program)
- Zip up the 'name directory' into .ZIP file.
- Name the .ZIP just like the 'name directory' (but it will have extension '.ZIP')
- Submit one file (must have .ZIP extension)
- "name directory" -- Your name e.g. {last name}{space}{first name}
- ZIP file name -- e.g. "{last name}{space}{first name}.ZIP"
- "??" -- The assignment #
Example
Assume programmers name is Fred Flintstone.
Assume this is Assignment #1.
Then your submission would be one file:
"Flintstone Fred.ZIP"
And the ZIP file would contain the following directories and files:
-- Flintstone Fred
-- Assignment1
readme.txt
-- Code
??1.java
??2.java
Where:
"--" indicates a directory
Otherwise item is a file
All your java source files (.java) should be in the "Code" subdirectory as shown.
Introduction To Objects With Java