Lab Task 1
Lab Task 1
Objectives
In this lab, you will become familiar with the Eclipse Integrated Development Environment
(IDE), write your first Java program, and understand the basic structure of a Java program.
Theoretical Description
Java is a versatile and widely used programming language known for its portability and
powerful features. Eclipse is a popular IDE that simplifies Java development by providing a
user-friendly environment.
Lab Task
Task 1: Setting Up Eclipse
• Launch Eclipse IDE on your computer.
• Configure your workspace and create a new Java project.
• Familiarize yourself with the Eclipse interface, including the Package Explorer,
Editor, and Console.
4
BS (Software Engineering) 2023
Code Help:
public class HelloWorld {
public static void main(String[] args) {
System.out.println("Hello, World!");
}
}