COM3113 -- Fundamentals of Programming -- Assignments

College of Computer Science -- Northeastern University

Fall Quarter 2002

Lab Session 1

October 8

Lab Task

1. If you have problem in assignment 1, you can ask for help and finish it in this lab.

2. Try the following unix commands and setup an directory (e.g. secret )executable, but not readable to others and group members. Inside this directory, setup another subdirectory with personalized name, which is not easy for others to guess, and make this new subdirectory both exectuable and readable to others.
       ls
       ls -l
       ls -la
        chmod 700 oneFileName; 
       ls -l;
        cp file1 fil2;
       ls -l
       mv file1 file2; 
       ls -l
        mkdir yourDirName;
        rm aFileName;
        rmdir aDirName;

3. Using emacs write two java files. The source code should be handed in at the end of this lab.

Requirements:

At the end of this lab, you should hand in whatever you have finished so far.
Please hand in your source code both in hardcopies and in email formate.

The deadline for this lab assignment is the same as assignment 2. It's the end of October 14th.

Back to course index page