Table of Contents

Lab 1

Introduction to Java environment and lab tools.

Objectives

Documentation

Exercise 1

Join ISP piazza forum following this link. Access code will be provided in class by instructor.

email for piazzza registration

Exercise 2

NOTE: User account format will be: nume-prenume-grupa. Ex: popescu-dan-30123

Exercise 3

NOTE: By following and accepting assignment a git repository will be created in your github account.

Exercise 4

cd c:\UTCN\isp
git clone {repository-link}
cd c:\UTCN\isp\{repository-folder}

Exercise 5

git add . 
git commit -m "Fix issue with substract method."
git push

Exercise 6

Exercise 7

package isp.lab1
public class HelloWorld {
 
    public static void main(String[] args) {
        System.out.println("Hello, World");
    }
 
}