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 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
PPTX
Java Data Types
PDF
Basic Java Programming
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
Java Data Types
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
Introduction to java 101
PPTX
Java 101
PDF
Java Intro: Unit1. Hello World
PDF
Introduction to java technology
PDF
Java practical(baca sem v)
PPTX
2. Introduction to Java for engineering stud
PDF
Java lab-manual
PDF
How to write a simple java program in 10 steps
PDF
itft-Overview of java language
PPTX
intro to java object oreinted programming school of computing
PPTX
object oriented programming unit one ppt
PPTX
basic core java up to operator
PPTX
Pj01 2-install java and write first java program
PPTX
OOPS_Lab_Summaries this is a whole summary of oop lab
DOCX
Java assgnmt2.
PPTX
Object Oriented Programming Concepts
PDF
Better code, littler classes
PDF
Android programming-basics
PPTX
JAVA PROGRAMMING BCA SECOND SEMESTER....
Introduction to java 101
Java 101
Java Intro: Unit1. Hello World
Introduction to java technology
Java practical(baca sem v)
2. Introduction to Java for engineering stud
Java lab-manual
How to write a simple java program in 10 steps
itft-Overview of java language
intro to java object oreinted programming school of computing
object oriented programming unit one ppt
basic core java up to operator
Pj01 2-install java and write first java program
OOPS_Lab_Summaries this is a whole summary of oop lab
Java assgnmt2.
Object Oriented Programming Concepts
Better code, littler classes
Android programming-basics
JAVA PROGRAMMING BCA SECOND SEMESTER....

Recently uploaded (20)

PDF
iTop VPN Free 5.6.0.5262 Crack latest version 2025
PDF
wealthsignaloriginal-com-DS-text-... (1).pdf
PPTX
Weekly report ppt - harsh dattuprasad patel.pptx
PDF
Autodesk AutoCAD Crack Free Download 2025
PPTX
Oracle Fusion HCM Cloud Demo for Beginners
PPTX
WiFi Honeypot Detecscfddssdffsedfseztor.pptx
PDF
CapCut Video Editor 6.8.1 Crack for PC Latest Download (Fully Activated) 2025
PDF
Digital Systems & Binary Numbers (comprehensive )
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
PDF
Odoo Companies in India – Driving Business Transformation.pdf
PPTX
history of c programming in notes for students .pptx
PPTX
Computer Software and OS of computer science of grade 11.pptx
PPTX
Reimagine Home Health with the Power of Agentic AI​
PDF
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
PDF
Adobe Illustrator 28.6 Crack My Vision of Vector Design
PDF
How AI/LLM recommend to you ? GDG meetup 16 Aug by Fariman Guliev
PDF
AutoCAD Professional Crack 2025 With License Key
PDF
Internet Downloader Manager (IDM) Crack 6.42 Build 41
PPTX
Monitoring Stack: Grafana, Loki & Promtail
PPTX
Patient Appointment Booking in Odoo with online payment
iTop VPN Free 5.6.0.5262 Crack latest version 2025
wealthsignaloriginal-com-DS-text-... (1).pdf
Weekly report ppt - harsh dattuprasad patel.pptx
Autodesk AutoCAD Crack Free Download 2025
Oracle Fusion HCM Cloud Demo for Beginners
WiFi Honeypot Detecscfddssdffsedfseztor.pptx
CapCut Video Editor 6.8.1 Crack for PC Latest Download (Fully Activated) 2025
Digital Systems & Binary Numbers (comprehensive )
Internet Downloader Manager (IDM) Crack 6.42 Build 42 Updates Latest 2025
Odoo Companies in India – Driving Business Transformation.pdf
history of c programming in notes for students .pptx
Computer Software and OS of computer science of grade 11.pptx
Reimagine Home Health with the Power of Agentic AI​
CCleaner Pro 6.38.11537 Crack Final Latest Version 2025
Adobe Illustrator 28.6 Crack My Vision of Vector Design
How AI/LLM recommend to you ? GDG meetup 16 Aug by Fariman Guliev
AutoCAD Professional Crack 2025 With License Key
Internet Downloader Manager (IDM) Crack 6.42 Build 41
Monitoring Stack: Grafana, Loki & Promtail
Patient Appointment Booking in Odoo with online payment

Java 101 Intro to Java Programming - Exercises