0% found this document useful (0 votes)
10 views

INFO6066 - Java and Eclipse Installation W2024

Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
10 views

INFO6066 - Java and Eclipse Installation W2024

Copyright
© © All Rights Reserved
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 7

Software and Information Systems Testing

INFO 6066 - Coding For Test

• Required Textbook: From ZyBook

1. Sign in or create an account at learn.zybooks.com


2. Enter zyBook code: FANSHAWECINFO6066LapkowskiWinter2024
3. Subscribe

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

Java – Programming Language.


Eclipse – Programming interface.
A refresher or introduction to programming
at an elementary level

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.

Once installed, we will set the path:


This will allow any program wanting to use java, to know where it is located on your
computer.

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/

Choose the “eclipse ide for java developers”

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

You might also like