Day School 01 - Presentation
Day School 01 - Presentation
Introduction to
Object Oriented Programming
Day School – 01
What is programming?
Aqua
Leaf
Activity 2- Group Activity
• Decide a Group Name
• Search the internet and find answers to the topics
- A Brief History of Object-Oriented Programming
- Evolution of Object-Oriented Programming languages.
- List of Object-Oriented Programming languages
A just-in-time compiler
translates Java byte
code into native
machine language.
2 4
1 3
KeyWords
Input/Outputs
Outputs
●System.out.println(); or
●System.out.print(); or
●System.out.printf();
Inputs
Scanner sc = new Scanner(System.in);
int x = sc.nextInt();
Variables
• Temporary memory locations to store data
• Volatile by nature
• In java variables are strongly typed; meaning they can only store a
specific type of data and this type cannot be changed later.
• Variables are declared by specifying their type and a name (which
we call the identifier)
int x;
“vary + able”
Data Types in Java
• Primitive data types: The primitive data types
include boolean, char, byte, short, int, long, float
and double.
Thank You!