SlideShare a Scribd company logo
Hands-on Exercises
Java 101: Introduction to Java
Hands-on Exercise
Basic Java Program
Create Basic Java Program
• Create the following program by typing it into
a text editor, and save it as HelloWorld.java.
Compile Basic Java Program
• Compile it by typing at the command-line: javac
HelloWorld.java.
• This creates a Java bytecode file named:
HelloWorld.class.
Execute Basic Java Program
• Execute it by typing at the command-line: java
HelloWorld.
Hands on Exercise
Command Line Arguments
Command Line Arguments
• Create a program that takes a name as command-line argument and
prints “Hi <name>, How are you?”
Hands-on Exercise
Integer Operations
Exercise: Integer Operations
• Create new Java project in Eclipse called IntegerOperations
• Create a Java class named IntOps that performs integer operations on a pair of integers
from the command line and prints the results.
Solution: Integer Operations
Hands-on Exercise
Leap Year Finder
Exercise: Leap Year Finder
• A year is a leap year if it is either divisible by 400 or
divisible by 4 but not 100.
• Create a java project in Eclipse named LeapYearFinder
• Write a java class named LeapYear that takes a year as
command line argument and prints true if it’s a leap
year and false if not
Solution: Leap Year Finder
Hands-on Exercise
Powers of Two
Exercise: Powers of Two
• Create a new Java project in Eclipse named Pow2
• Write a java class named PowerOfTwo to print powers of 2 that are
<= 2N where N is a number passed as an argument to the program.
– Increment i from 0 to N.
– Double v each time
Solution: Power of 2
Bonus Exercises
Java 101: Introduction to Java
Hands-on Exercise
Random Number Generator
Exercise: Random Number Generator
• Create a new java project in Eclipse called RandomInteger
• Write a java class named RandomInt to generate a pseudo-random
number between 0 and N-1 where N is a number passed as an
argument to the program
Solution: Random Number Generator
Hands-on Exercise
Array of Days
Exercise: Array of Days
• Create a new Java project in Eclipse named ArrayOfDays
• Create a java class named DayPrinter that prints out
names of the days in a week from an array using a for-
loop.
Solution: Arrays of Days
public class DayPrinter {
public static void main(String[] args) {
//initialize the array with the names of days of the
week
String[] daysOfTheWeek =
{"Sunday","Monday","Tuesday","Wednesday",
"Thuesday","Friday”,"Saturday"};
//loop through the array and print their elements to
//stdout
for (int i= 0;i < daysOfTheWeek.length;i++ ){
System.out.println(daysOfTheWeek[i]);
}
}
}
% javac DayPrinter.java
% java DayPrinter
Sunday
Monday
Tuesday
Wednesday
Thuesday
Friday
Saturday
Hands-on Exercise
Print Personal Details
Exercise: Print Personal Details
• Write a program that will print your name and
address in the Console view of Eclipse, for
example:
Alex Johnson
23 Main Street
New York, NY 10001 USA
Hands-on Exercise
Sales Discount
Exercise: Sales Discount
• Create a new project in Eclipse named Sale
• Create, compile, and run the FriendsAndFamily class as illustrated below
• Debug this program in your IDE to find out how it works

More Related Content

PPTX
Java Data Types
PPTX
Java abstract class & abstract methods
PPT
Packages in java
PPTX
Java database connectivity with MySql
PPS
Jdbc architecture and driver types ppt
PPTX
Core java complete ppt(note)
PPTX
Structure of java program diff c- cpp and java
PDF
Basic Java Programming
Java Data Types
Java abstract class & abstract methods
Packages in java
Java database connectivity with MySql
Jdbc architecture and driver types ppt
Core java complete ppt(note)
Structure of java program diff c- cpp and java
Basic Java Programming

What's hot (20)

PDF
Generics
PDF
Arrays in Java
PPTX
Oops concept in c++ unit 3 -topic 4
PPT
Command line arguments.21
PPTX
Java(Polymorphism)
PPT
Programming in c#
PDF
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
PPTX
This keyword in java
PPTX
Constructor in java
PPT
Java
PPTX
Advance Java Topics (J2EE)
PPTX
JDBC ppt
PPTX
PDF
Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...
PPT
JDBC – Java Database Connectivity
PPTX
this keyword in Java.pptx
PPTX
Classes objects in java
PDF
Spring Boot
Generics
Arrays in Java
Oops concept in c++ unit 3 -topic 4
Command line arguments.21
Java(Polymorphism)
Programming in c#
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
This keyword in java
Constructor in java
Java
Advance Java Topics (J2EE)
JDBC ppt
Java Strings Tutorial | String Manipulation in Java | Java Tutorial For Begin...
JDBC – Java Database Connectivity
this keyword in Java.pptx
Classes objects in java
Spring Boot
Ad

Viewers also liked (20)

PPTX
Java 102 intro to object-oriented programming in java - exercises
PDF
Programming exercises
PDF
Introduction to Agile
PPTX
Java 101 Intro to Java Programming
PPTX
Java 201 Intro to Test Driven Development in Java
PPTX
Java 102 intro to object-oriented programming in java
PPTX
Computer Programming Overview
PPTX
Java 103 intro to java data structures
PPTX
Java 101 intro to programming with java
PDF
Java Day-7
PDF
Enum Report
PDF
Java Day-2
PPTX
Data structures and algorithms lab5
PPSX
data structure(tree operations)
PPTX
Java package
PDF
Java data structures for principled programmer
PPT
Interface in java By Dheeraj Kumar Singh
PPT
2310 b 09
ODP
Nosql availability & integrity
PPT
Forms authentication
Java 102 intro to object-oriented programming in java - exercises
Programming exercises
Introduction to Agile
Java 101 Intro to Java Programming
Java 201 Intro to Test Driven Development in Java
Java 102 intro to object-oriented programming in java
Computer Programming Overview
Java 103 intro to java data structures
Java 101 intro to programming with java
Java Day-7
Enum Report
Java Day-2
Data structures and algorithms lab5
data structure(tree operations)
Java package
Java data structures for principled programmer
Interface in java By Dheeraj Kumar Singh
2310 b 09
Nosql availability & integrity
Forms authentication
Ad

Similar to Java 101 Intro to Java Programming - Exercises (20)

PPTX
Java 101
PPTX
Introduction to java 101
PDF
Java Lab
PDF
Proyect of english
PDF
Java for beginners programming course
PDF
Java for beginners programming course (updated)
PDF
Java conceptual learning material
PDF
Java Script Sysllabus for the computer.pdf
PPTX
Fundamentals of java --- version 2
PPTX
Java-Programming.forBSITSTUDENTfreespptx
PPTX
Core Java introduction | Basics | free course
PPT
bai giang java co ban - java cơ bản - bai 1
PDF
OpenThink Labs Training : Diving into Java, The Head First Way
PDF
Download full ebook of Programming With Java Edet Theophilus instant download...
PDF
Intro To Java Alpharetta Meetup Day-1
PDF
Java 8 for complete beginners
PDF
03 expressions.ppt
PDF
Java for complete beginners programming course
Java 101
Introduction to java 101
Java Lab
Proyect of english
Java for beginners programming course
Java for beginners programming course (updated)
Java conceptual learning material
Java Script Sysllabus for the computer.pdf
Fundamentals of java --- version 2
Java-Programming.forBSITSTUDENTfreespptx
Core Java introduction | Basics | free course
bai giang java co ban - java cơ bản - bai 1
OpenThink Labs Training : Diving into Java, The Head First Way
Download full ebook of Programming With Java Edet Theophilus instant download...
Intro To Java Alpharetta Meetup Day-1
Java 8 for complete beginners
03 expressions.ppt
Java for complete beginners programming course

Recently uploaded (20)

PDF
iTop VPN Crack Latest Version Full Key 2025
PDF
Types of Token_ From Utility to Security.pdf
PDF
Top 10 Software Development Trends to Watch in 2025 🚀.pdf
PDF
How Tridens DevSecOps Ensures Compliance, Security, and Agility
PDF
Designing Intelligence for the Shop Floor.pdf
PPTX
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
PDF
Complete Guide to Website Development in Malaysia for SMEs
DOCX
How to Use SharePoint as an ISO-Compliant Document Management System
PPTX
Custom Software Development Services.pptx.pptx
PPTX
Computer Software and OS of computer science of grade 11.pptx
PDF
AI-Powered Threat Modeling: The Future of Cybersecurity by Arun Kumar Elengov...
PPTX
assetexplorer- product-overview - presentation
PPTX
Introduction to Windows Operating System
PPTX
Patient Appointment Booking in Odoo with online payment
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
Cybersecurity: Protecting the Digital World
PDF
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
PDF
AI/ML Infra Meetup | LLM Agents and Implementation Challenges
PPTX
Monitoring Stack: Grafana, Loki & Promtail
PPTX
Tech Workshop Escape Room Tech Workshop
iTop VPN Crack Latest Version Full Key 2025
Types of Token_ From Utility to Security.pdf
Top 10 Software Development Trends to Watch in 2025 🚀.pdf
How Tridens DevSecOps Ensures Compliance, Security, and Agility
Designing Intelligence for the Shop Floor.pdf
Log360_SIEM_Solutions Overview PPT_Feb 2020.pptx
Complete Guide to Website Development in Malaysia for SMEs
How to Use SharePoint as an ISO-Compliant Document Management System
Custom Software Development Services.pptx.pptx
Computer Software and OS of computer science of grade 11.pptx
AI-Powered Threat Modeling: The Future of Cybersecurity by Arun Kumar Elengov...
assetexplorer- product-overview - presentation
Introduction to Windows Operating System
Patient Appointment Booking in Odoo with online payment
wealthsignaloriginal-com-DS-text-... (1).pdf
Cybersecurity: Protecting the Digital World
Product Update: Alluxio AI 3.7 Now with Sub-Millisecond Latency
AI/ML Infra Meetup | LLM Agents and Implementation Challenges
Monitoring Stack: Grafana, Loki & Promtail
Tech Workshop Escape Room Tech Workshop

Java 101 Intro to Java Programming - Exercises