SlideShare a Scribd company logo
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Hadoop?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
➢ Variables
➢ Data types
➢ Operators
➢ Conditional Statements
➢ Loops
➢ Arrays and Strings
➢ Functions
➢ Classes and Objects
Agenda
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Installation
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Eclipse Installation
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Variables
Data types
Operators
Conditional
Statements
Loops Functions
Classes and
Objects
Arrays &
Strings
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Variable
Variables are nothing but reserved memory locations to store values. This means that
when you create a variable you reserve some space in memory.
int X = 25;
float Y = 3.142857;
boolean B = true;
B = true
Y = 3.142857
X = 25
Memory
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Operators
Conditional
Statements
Loops Functions
Classes and
Objects
Arrays &
Strings
Variables
Data types
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data types
A data type, in programming, is a classification that specifies which type of value a variable
has and what type of mathematical, relational or logical operations can be applied to it
without causing an error.
int X = 25;
float Y = 3.142857;
boolean B = true;
B = true
Y = 3.142857
X = 25
Memory
Integer
Float
Boolean
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data types
Data types
Integer
Float
Character
Boolean
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Character
Boolean
Integer1
3
4
Float32
Numeric Data type
 Integer data types are used to store numeric values.
 There are four different integer types in Java:
-128 to 127
-32768 to 32167
-2147483648 to 2147483647
-9,223,372,036,854,775,808 to
9,223,372,036,854,775,807
byte Type
short Type
int Type
long Type
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Character
Boolean
Integer1
3
4
Float3
2
Float Data type
 Float data types are used to store numeric values along
with their decimal value.
 There are two different float types in Java:
float Type
double Type
±3.40282347E+38F
±1.79769313486231570E+308
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Boolean
Integer1
Character3
4
Float32
Character Data type
 Character data types are used to store character values.
 char data type is a single 16-bit Unicode character:
char Type 0 to 65,535
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Character
Integer1
3
Boolean4
Float32
Boolean Data type
boolean Type True or false
 Boolean data types are used to store boolean values along.
 This data type is used for simple flags that track true/false
conditions
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Conditional
Statements
Loops Functions
Classes and
Objects
Arrays &
Strings
Variables
Data types
Operators
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operations
Operators
Relational
Operators
Arithmetic
Operators
Logical
Operators
Unary
Operators
Operations Operators are the constructs which can manipulate the value of operands.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Arithmetic and Relational Operators
Arithmetic
a + b
a – b
a * b
a / b
a % b
Addition
Multiplication
Subtraction
Division
Modulus
a == b
a != b
a > b
a < b
a >= b
a <= b
Equal To
Greater Than
Not Equal To
Less Than
Greater Than Equal To
Less Than Equal To
Relational
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Unary Operator
There are two types of unary operators: Increment and Decrement
Increment
Decrement
Pre increment
Post increment
Pre decrement
Post decrement
++i
i++
--i
i--
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Logical Operator
There are three types of logical operators: Logical AND, Logical NOT, Logical OR
a and b
a or b
Returns a if a is false, b otherwise
Returns b if b is false, a otherwise
not a
Returns true if a is false, false
otherwise
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Operators
Conditional
Statements
Loops Functions
Classes and
Objects
Arrays &
Strings
Variables
Data types
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Conditional Statements
If Statement
If code
End
Start
If
Condition
FALSETRUE
Syntax:
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Conditional Statements
Else If Statement
If code
End
Start
If
Condition
FALSE
TRUE
FALSE
Else If
Condition
TRUE
Else If code
Syntax:
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Conditional Statements
Else Statement
Syntax:
If code
End
Start
If
Condition
FALSE
TRUE
FALSE
Else If
Condition
TRUE
Else If code
Else code
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Conditional Statements
Switch case Statement
Syntax:
Start
switch
Condition
Case value1 Statement 1 break
Case value2 Statement 2 break
Case value3 Statement 3 break
default Statement
End
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Conditional
Statements
Operators Functions
Classes and
Objects
Arrays &
Strings
Variables
Data types
Loops
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Loops in Java
A loop statement allows us to execute a statement or group of statements
multiple times. The following diagram illustrates a loop statement:
Loops
Loops
forwhiledo while
CHECK
CONDITION
EXECUTE BLOCK
START
EXIT LOOP
FALSE
TRUErepeat
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Do While Loop
Do While Loop Repeats a statement or group of statements while a given condition is TRUE. It
tests the condition after executing the loop body.
Syntax:
CHECK
CONDITION
EXECUTE BLOCK
START
EXIT LOOP
FALSE
TRUE
repeat
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
While Loop
While Loop Repeats a statement or group of statements while a given condition is TRUE. It
tests the condition before executing the loop body.
Syntax:
CHECK
CONDITION
EXECUTE BLOCK
START
repeat
EXIT LOOP
FALSE
TRUE
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
For Loop
For Loop Repeats a statement or group of for a fixed number of times. It tests the
condition before executing the loop body.
Syntax:
Check
condition
Initialization
START
Iteration
Execute Statements
Exit loop
FALSE
TRUE
repeat
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Loops
Arrays &
Strings
Conditional
Statements
Operators Functions
Classes and
Objects
Variables
Data types
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
 An array is a data structure which holds the sequential elements of the same type.
 Arrays of any type can be created and may have one or more dimensions.
Array In Java
0 1 2 3 4
126 32 230 21 200
Index
Value
E.g: array index 4 is
holding a value of 200
Each index in the array
holds a value.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
 Arrays can be of 2 types:
Array In Java
Single Dimensional Array
Initialization: int a[] = new int[12]
Initialization: int table[][] = new int[4][5];
Table[2][2] = 13
Multi Dimensional Array
0 1 2 3 4
0
1
2
3
Width = 5
Height =4
Index in Y dimension
Index in
X dimension
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
 String is a data structure which holds the sequential character.
 In Java programming language, strings are treated as objects.
String In Java
0 1 2 3 4 5
H e l l o 0
Initialization: String str = “Hello”
Str[0] Str[1] Str[2] Str[3] Str[4] Str[5]
www.edureka.co/devopsEDUREKA DEVOPS CERTIFICATION TRAINING
Functions
Loops
Conditional
Statements
Operators
Classes and
Objects
Variables
Data types
Arrays &
Strings
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Functions
A function is a block of organized, reusable code that is used to perform a
single, related action.
Functions
Predefined
Functions
User Defined
Functions
Function Add
Call (3,5)
Call (6,9)
Call (1,5)
Call 1
Call 2
Call 3
Return 8
Return 15
Return 6
Functions In Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Functions
Classes and
Objects
Loops
Conditional
Statements
OperatorsVariables
Data types
Arrays &
Strings
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Classes and Objects in Python
Classes and Objects
 A class is the blueprint from which specific objects are created.
 Anything that has a state and behavior is object.
Class
Object
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Session In A Minute
Install Java Data types, Operators
Loops Functions
Conditional Statements
Classes and Objects
Java Programming | Java Tutorial For Beginners | Java Training | Edureka

More Related Content

PDF
What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
Edureka!
 
PDF
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Edureka!
 
PDF
Introduction to basics of java
vinay arora
 
PDF
Introduction to Java Programming Language
jaimefrozr
 
PPT
Core java concepts
Ram132
 
PDF
Basic Java Programming
Math-Circle
 
PPT
Introduction to Java Programming, Basic Structure, variables Data type, input...
Mr. Akaash
 
PPTX
Introduction to java
Saba Ameer
 
What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka
Edureka!
 
Java Tutorial | Java Programming Tutorial | Java Basics | Java Training | Edu...
Edureka!
 
Introduction to basics of java
vinay arora
 
Introduction to Java Programming Language
jaimefrozr
 
Core java concepts
Ram132
 
Basic Java Programming
Math-Circle
 
Introduction to Java Programming, Basic Structure, variables Data type, input...
Mr. Akaash
 
Introduction to java
Saba Ameer
 

What's hot (20)

PDF
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Edureka!
 
PDF
Java 10 New Features
Ali BAKAN
 
PPTX
Spring boot
Gyanendra Yadav
 
PDF
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Edureka!
 
PPTX
Training on Core java | PPT Presentation | Shravan Sanidhya
Shravan Sanidhya
 
PPT
Core java slides
Abhilash Nair
 
PDF
Java Basic Oops Concept
atozknowledge .com
 
PDF
Introduction to Java Programming
Ravi Kant Sahu
 
PPTX
Java Programming
Elizabeth alexander
 
PPTX
History Of JAVA
ARSLANAHMED107
 
PPT
Java Basics
Brandon Black
 
PPT
Java platform
BG Java EE Course
 
PPTX
Introduction to java
Sandeep Rawat
 
PPTX
Spring Framework
tola99
 
PPTX
Core Java
Priyanka Pradhan
 
PDF
Introduction to Java
Professional Guru
 
PPTX
Core java
Ravi varma
 
PPTX
Core Java Tutorials by Mahika Tutorials
Mahika Tutorials
 
PDF
Spring Boot
Jaran Flaath
 
PPT
Java Tutorial
Vijay A Raj
 
Java Tutorial For Beginners - Step By Step | Java Basics | Java Certification...
Edureka!
 
Java 10 New Features
Ali BAKAN
 
Spring boot
Gyanendra Yadav
 
Java Training | Java Tutorial for Beginners | Java Programming | Java Certifi...
Edureka!
 
Training on Core java | PPT Presentation | Shravan Sanidhya
Shravan Sanidhya
 
Core java slides
Abhilash Nair
 
Java Basic Oops Concept
atozknowledge .com
 
Introduction to Java Programming
Ravi Kant Sahu
 
Java Programming
Elizabeth alexander
 
History Of JAVA
ARSLANAHMED107
 
Java Basics
Brandon Black
 
Java platform
BG Java EE Course
 
Introduction to java
Sandeep Rawat
 
Spring Framework
tola99
 
Core Java
Priyanka Pradhan
 
Introduction to Java
Professional Guru
 
Core java
Ravi varma
 
Core Java Tutorials by Mahika Tutorials
Mahika Tutorials
 
Spring Boot
Jaran Flaath
 
Java Tutorial
Vijay A Raj
 
Ad

Similar to Java Programming | Java Tutorial For Beginners | Java Training | Edureka (20)

PDF
data types.pdf
HarshithaGowda914171
 
PPTX
Java fundamentals
HCMUTE
 
PPTX
Revision of introduction in java programming.pptx
MutwakilElsadig
 
PPTX
Fundamental programming structures in java
Shashwat Shriparv
 
PPSX
DISE - Windows Based Application Development in Java
Rasan Samarasinghe
 
PDF
Computational Problem Solving 004 (1).pptx (1).pdf
SadhikaPolamarasetti1
 
PPSX
Dr. Rajeshree Khande : Java Basics
DrRajeshreeKhande
 
PPSX
Dr. Rajeshree Khande : Programming concept of basic java
jalinder123
 
PPTX
Java Programming
RubaNagarajan
 
PPTX
ChapterTwoandThreefnfgncvdjhgjshgjdlahgjlhglj.pptx
berihun18
 
PPTX
JPC#8 Introduction to Java Programming
Pathomchon Sriwilairit
 
PPT
Unit I Advanced Java Programming Course
parveen837153
 
PPTX
Computational Problem Solving 016 (1).pptx
320126552027SURAKATT
 
PPSX
DITEC - Programming with Java
Rasan Samarasinghe
 
PPTX
Android webinar class_java_review
Edureka!
 
PDF
java basics - keywords, statements data types and arrays
mellosuji
 
PPTX
Unit 2-data types,Variables,Operators,Conitionals,loops and arrays
DevaKumari Vijay
 
PPT
Core Java Programming | Data Type | operator | java Control Flow| Class 2
Sagar Verma
 
PPTX
03 and 04 .Operators, Expressions, working with the console and conditional s...
Intro C# Book
 
data types.pdf
HarshithaGowda914171
 
Java fundamentals
HCMUTE
 
Revision of introduction in java programming.pptx
MutwakilElsadig
 
Fundamental programming structures in java
Shashwat Shriparv
 
DISE - Windows Based Application Development in Java
Rasan Samarasinghe
 
Computational Problem Solving 004 (1).pptx (1).pdf
SadhikaPolamarasetti1
 
Dr. Rajeshree Khande : Java Basics
DrRajeshreeKhande
 
Dr. Rajeshree Khande : Programming concept of basic java
jalinder123
 
Java Programming
RubaNagarajan
 
ChapterTwoandThreefnfgncvdjhgjshgjdlahgjlhglj.pptx
berihun18
 
JPC#8 Introduction to Java Programming
Pathomchon Sriwilairit
 
Unit I Advanced Java Programming Course
parveen837153
 
Computational Problem Solving 016 (1).pptx
320126552027SURAKATT
 
DITEC - Programming with Java
Rasan Samarasinghe
 
Android webinar class_java_review
Edureka!
 
java basics - keywords, statements data types and arrays
mellosuji
 
Unit 2-data types,Variables,Operators,Conitionals,loops and arrays
DevaKumari Vijay
 
Core Java Programming | Data Type | operator | java Control Flow| Class 2
Sagar Verma
 
03 and 04 .Operators, Expressions, working with the console and conditional s...
Intro C# Book
 
Ad

More from Edureka! (20)

PDF
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
PDF
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
PDF
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
PDF
Tableau Tutorial for Data Science | Edureka
Edureka!
 
PDF
Python Programming Tutorial | Edureka
Edureka!
 
PDF
Top 5 PMP Certifications | Edureka
Edureka!
 
PDF
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
PDF
Linux Mint Tutorial | Edureka
Edureka!
 
PDF
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
PDF
Importance of Digital Marketing | Edureka
Edureka!
 
PDF
RPA in 2020 | Edureka
Edureka!
 
PDF
Email Notifications in Jenkins | Edureka
Edureka!
 
PDF
EA Algorithm in Machine Learning | Edureka
Edureka!
 
PDF
Cognitive AI Tutorial | Edureka
Edureka!
 
PDF
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
PDF
Blue Prism Top Interview Questions | Edureka
Edureka!
 
PDF
Big Data on AWS Tutorial | Edureka
Edureka!
 
PDF
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
PDF
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
PDF
Introduction to DevOps | Edureka
Edureka!
 
What to learn during the 21 days Lockdown | Edureka
Edureka!
 
Top 10 Dying Programming Languages in 2020 | Edureka
Edureka!
 
Top 5 Trending Business Intelligence Tools | Edureka
Edureka!
 
Tableau Tutorial for Data Science | Edureka
Edureka!
 
Python Programming Tutorial | Edureka
Edureka!
 
Top 5 PMP Certifications | Edureka
Edureka!
 
Top Maven Interview Questions in 2020 | Edureka
Edureka!
 
Linux Mint Tutorial | Edureka
Edureka!
 
How to Deploy Java Web App in AWS| Edureka
Edureka!
 
Importance of Digital Marketing | Edureka
Edureka!
 
RPA in 2020 | Edureka
Edureka!
 
Email Notifications in Jenkins | Edureka
Edureka!
 
EA Algorithm in Machine Learning | Edureka
Edureka!
 
Cognitive AI Tutorial | Edureka
Edureka!
 
AWS Cloud Practitioner Tutorial | Edureka
Edureka!
 
Blue Prism Top Interview Questions | Edureka
Edureka!
 
Big Data on AWS Tutorial | Edureka
Edureka!
 
A star algorithm | A* Algorithm in Artificial Intelligence | Edureka
Edureka!
 
Kubernetes Installation on Ubuntu | Edureka
Edureka!
 
Introduction to DevOps | Edureka
Edureka!
 

Recently uploaded (20)

PDF
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
PPTX
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
PDF
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
PDF
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
PPTX
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
PPTX
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
PDF
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
PDF
Brief History of Internet - Early Days of Internet
sutharharshit158
 
PPTX
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
PPTX
Coupa-Overview _Assumptions presentation
annapureddyn
 
PDF
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
PDF
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
PPTX
IoT Sensor Integration 2025 Powering Smart Tech and Industrial Automation.pptx
Rejig Digital
 
PDF
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
PDF
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
PDF
Architecture of the Future (09152021)
EdwardMeyman
 
PDF
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
PPTX
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
PDF
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
PDF
This slide provides an overview Technology
mineshkharadi333
 
Orbitly Pitch Deck|A Mission-Driven Platform for Side Project Collaboration (...
zz41354899
 
cloud computing vai.pptx for the project
vaibhavdobariyal79
 
Event Presentation Google Cloud Next Extended 2025
minhtrietgect
 
Tea4chat - another LLM Project by Kerem Atam
a0m0rajab1
 
ChatGPT's Deck on The Enduring Legacy of Fax Machines
Greg Swan
 
How to Build a Scalable Micro-Investing Platform in 2025 - A Founder’s Guide ...
Third Rock Techkno
 
Presentation about Hardware and Software in Computer
snehamodhawadiya
 
Brief History of Internet - Early Days of Internet
sutharharshit158
 
Dev Dives: Automate, test, and deploy in one place—with Unified Developer Exp...
AndreeaTom
 
Coupa-Overview _Assumptions presentation
annapureddyn
 
How Open Source Changed My Career by abdelrahman ismail
a0m0rajab1
 
MASTERDECK GRAPHSUMMIT SYDNEY (Public).pdf
Neo4j
 
IoT Sensor Integration 2025 Powering Smart Tech and Industrial Automation.pptx
Rejig Digital
 
How-Cloud-Computing-Impacts-Businesses-in-2025-and-Beyond.pdf
Artjoker Software Development Company
 
SparkLabs Primer on Artificial Intelligence 2025
SparkLabs Group
 
Architecture of the Future (09152021)
EdwardMeyman
 
Research-Fundamentals-and-Topic-Development.pdf
ayesha butalia
 
AI and Robotics for Human Well-being.pptx
JAYMIN SUTHAR
 
Accelerating Oracle Database 23ai Troubleshooting with Oracle AHF Fleet Insig...
Sandesh Rao
 
This slide provides an overview Technology
mineshkharadi333
 

Java Programming | Java Tutorial For Beginners | Java Training | Edureka