INFO6066 - Java and Eclipse Installation W2024
INFO6066 - Java and Eclipse Installation W2024
A subscription is $89. Students may begin subscribing on Jan 1, 2024 and the
cutoff to subscribe is Apr 15, 2024. Subscriptions will last until May 14, 2024.
INFO 6066
Software and Information Systems Testing
Coding for Test
INFO6066
INFO 6066
Software and Information Systems Testing
Lets get JDK Installed
http://www.oracle.com/technetwork/java/javase/downloads/index.html
Download the latest JDK version and install letting it choose its own defaults.
INFO 6066
Software and Information Systems Testing
NotePad++
• Next we need to download NotePad++ and set its language to
Java.
https://notepad-plus-plus.org/
INFO 6066
Software and Information Systems Testing
Lets code
public class HelloWorld
{
public static void main(String [ ] args)
{
System.out.println(“Hello World. My name is Mike”);
}
}
INFO 6066
Software and Information Systems Testing
Eclipse
• Go to the following site and download Eclipse:
• Make sure you choose the correct installation based on your
computer’s operating system.
https://eclipse.org/downloads/
INFO 6066
Software and Information Systems Testing
Homework
Read Chapter One:
1.1 Programming (general)
1.2 Programming basics
1.3 Comments and whitespace
1.4 Errors and warnings
1.5 Computers and programs (general)
1.6 Computer tour
1.7 Language history
1.8 Problem solving
1.9 Why programming
1.10 Why whitespace matters
1.11 Java example: Married-couple names
INFO 6066