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
Agenda For Today
➢ What is Java?
➢ Where is Java used?
➢ Features of Java
➢ Java Environment
➢ How does Java work?
➢ Data Types in Java
➢ Operators in Java
➢ Functions in Java
➢ Object Oriented Concepts in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Java?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Java?
➢ Java was created by a team lead by James Gosling in 1995 for Sun Microsystems.
➢ Java is a platform independent programming language that follows the logic of
“Write once, Run anywhere”.
Programming Language Operations Platform
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
What is Java?
January 1996
February 1997
December 1998
May 2000
February 2002
September 2004
December 2006
July 2011
March 2014
Java 1.0
Oak
Java 1.1
Java 1.2
Playground
Java1.3
Kestrel
Java 1.4
Merlin
Java 5 Tiger
Java 6
Mustang
Java 7
Dolphin
Java 8
Where is Java used?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Android is the markets leading mobile operating system that extensively uses Java.
Where is Java used?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Below are some of the domains that make use of Java:
Where is Java used?
Financial
Services
Scientific
Research
Retail
Information
Technology
Android
Stock
market
Banking Big Data
Features of Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Distributed RobustDynamic High Performance
Simple Object-oriented
{OOPS}
Portable Secure
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Simple Object-oriented
{OOPS}
DiPortable Secure
➢ Java was designed to be easy for professional programmer to learn and use effectively.
➢ No need to worry about memory management because there is Automatic Garbage Collection
in java.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Object-oriented
{OOPS}
DistributedPortable Secure Dyna
➢ Applications written using Java are portable in the sense that they can be executed on any kind
of computer containing any CPU or any operating system.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Object-oriented
{OOPS}
Distributed RobSecure Dynamic
➢ Java is true object oriented language.
➢ Everything is considered to be an “object” and all operations are performed using these
objects.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Distributed RobustSecure Dynamic High P
➢ Java Programs run inside virtual machine sandbox to prevents any activities from untrusted
sources.
➢ No use of explicit pointer.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
Distributed RobustDynamic High Performance
➢ Java has a feature called Remote Method Invocation (RMI) using which a program can invoke
method of another program across a network and get the output.
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
➢ Java programs carry with them substantial amounts of run-time type information that is used
to verify and resolve accesses to objects at run time.
Distributed RobustDynamic High Performance
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
➢ Java checks the code during the compilation time and run time also.
➢ Java completely takes care of memory allocation and releasing, which makes the Java program
more robust.
Distributed RobustDynamic High Performance
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Features of Java
➢ Java achieves high performance through the use of bytecode which can easily translated into
native machine code.
Distributed RobustDynamic High Performance
Java Environment
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Development Kit
JDK
JRE
JVM
JVM (Java Virtual Machine) is an abstract machine. It is
a specification that provides runtime environment in
which java bytecode can be executed.
JRE (Java Runtime Environment) is a runtime
environment which implements JVM and provides all
class libraries and other files that JVM uses at
runtime.
JDK(Java Development Kit) is the tool necessary to
compile, document and package Java programs. The
JDK completely includes JRE.
How does Java work?
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
How does Java work?
Java Source
(.java)
Java is easy
Java C Compiler
JIT
Compiler
Java
Interpreter
JVM
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
How does Java work?
Java Source (.java)
Java Compiler
Java Bytecode
(.class)
Compile-time Environment
Java Bytecodes move locally
or through network
Class Loader
Bytecode
Verifier
Java Class Libraries
Java Interpreter
Just in Time
Compiler
Runtime System
Java Virtual
Machine
Run-time Environment
Operating System
Hardware
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Installation
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Installation
Go to
http://www.oracle.com/technetw
ork/java/javase/downloads
1
Download Java Platform(JDK)
version 8 update 121 and install
on your Windows system
2
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Java Installation
To set the permanent path of JDK in your
system:
1. Begin by going to My Computer
Properties.
2. Click on Advanced system setting.
3. Click on Environment Variables
option
4. Select Path variable to edit
5. Enter the path to bin folder inside
JDK installed on your system.(
Default path is C:Program
FilesJavajdk1.8.0_121bin )
1
2
3
4
5
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Go to
www.eclipse.org
Download Eclipse
Neon installer and
install on your
Windows system
1
2
Eclipse IDE Installation
Data Types in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Types in Java
Integer BooleanCharacterFloat
Primitive Data Type
bytelongshort int
floatdouble char bool
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Types in Java
Data Type Value Bytes Required
byte -128 to 127 1
short -32768 to 32767 2
int -2147483648 to 2147483647 4
long
-9,223,372,036,854,775,808 to
9,223,372,036,854,775,807
8
float ±3.40282347E+38F 4
double ±1.79769313486231570E+308 8
char 0 to 65,536 2
boolean true or false 1(bit)
Data Operations in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operators in Java
Data Operators
Arithmetic
Operators
Logical Operators
Relational
operators
Unary Operators
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operations in Java
Arithmetic operators:
Operator Syntax Description
+ A + B Addition
- A – B Subtraction
/ A / B Division
* A * B Multiplication
% A % B
Modulus – Returns reminder
after division
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Data Operations in Java
Unary operators:
Operator Syntax Description
++ i++ Use the current value of i and
then increment the value by 1.
++i Increment the value of i by 1
and then use the new value.
-- --i Decrement the value of i by 1
and then use the new value.
i-- Use the current value of i and
then decrement the value by 1
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Operator Syntax Decryption
> X>Y
Result is true if X if greater than Y; otherwise is
false
>= X>=Y
Result is true if X if greater than or equal to Y;
otherwise is false
< X<Y
Result is true if X if lesser than Y; otherwise is
false
<= X<=Y
Result is true if X if lesser than or equal Y;
otherwise is false
== X==Y
Result is true if X and Y are equal; otherwise is
false
!= X!=Y
Result is true if X and Y are not equal; otherwise
is false
Data Operations in Java
Relational operators:
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Operator Syntax Decryption
&& False && False False
True && False False
False && True False
True && True True
|| False || False False
True || False True
False || True True
True || True True
Data Operations in Java
Logical operators:
Functions In Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Functions in Java
A function is a block of organized, reusable sets of instructions that is
used to perform some related actions.
Why do we use functions?
➢Re – usability of code minimizes redundancy
➢Procedural decomposition makes things organized
Function
Built-in Function
User Defined
Function
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Syntax:
modifier returnType methodName(parameters)
{
Statements…
}
Example:
public static int add(int a, int b)
{
int result;
result = a + b;
return result;
}
Functions in Java
User Defined Function
defining function
function parameters
function return value
function call
output
Object Oriented Programming
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Objects
➢ Object is simply a collection of data (State) and methods (Behaviour) that act on those data.
State:
• Color
• Size
• Shape
Behavior:
• Power On();
• Call ();
• Message ();
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Class
➢ Class is a blueprint from with the object are created.
class Phone{
String brand;
int batteryPower;
String processor;
.
.
public Phone(String phoneBrand, int power, String phoneProcessor)
{
brand = phoneBrand;
Batterpower = power;
processor = phoneProcessor;
}
//Other class methods
}
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Super Class
Child Class
Inheritance
➢ Inheritance is a mechanism through which one object acquires all the properties and behaviors of
parent object.
Mobile
Apple Samsung Google
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Encapsulation
➢ Encapsulation is the mechanism that binds together code and the data it manipulates together.
Authorized
User
Unauthorized
User
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Polymorphism
➢ Polymorphism is the ability of a variable, function or object to take on multiple forms.
Mobile
Camera Remote MP3 Player
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Abstraction
➢ Abstraction is the methodology of hiding the implementation details from the user and only providing
the functionality to the users.
Summary
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Session In A Minute
Java Introduction Why Learn Java Features of Java
Java Environment How does Java work Data Types in Java
`
https://www.edureka.co/java-j2ee-soa-trainingEDUREKA JAVA CERTIFICATION TRAINING
Session In A Minute
Data Operators in Java Functions in Java
What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka

More Related Content

What's hot (20)

PDF
Java Programming | Java Tutorial For Beginners | Java Training | Edureka
Edureka!
 
PDF
Introduction to java (revised)
Sujit Majety
 
PPTX
Introduction to java
Saba Ameer
 
PPTX
Introduction to java
Java Lover
 
PDF
Introduction to Java Programming Language
jaimefrozr
 
PDF
Basic Java Programming
Math-Circle
 
PPT
Java basic
Sonam Sharma
 
PPTX
Java 8 presentation
Van Huong
 
PPTX
Introduction to java
Sandeep Rawat
 
PPTX
Core Java Tutorials by Mahika Tutorials
Mahika Tutorials
 
PPTX
Presentation on Core java
mahir jain
 
PDF
Introduction to Java Programming
Ravi Kant Sahu
 
DOCX
JDK,JRE,JVM
Cognizant
 
PPTX
Java programming course for beginners
Eduonix Learning Solutions
 
PPTX
Java virtual machine
Nikhil Sharma
 
PPTX
Spring boot
Gyanendra Yadav
 
PPTX
History Of JAVA
ARSLANAHMED107
 
PDF
Spring Boot
Pei-Tang Huang
 
PPTX
JRE , JDK and platform independent nature of JAVA
Mehak Tawakley
 
PPT
Core java slides
Abhilash Nair
 
Java Programming | Java Tutorial For Beginners | Java Training | Edureka
Edureka!
 
Introduction to java (revised)
Sujit Majety
 
Introduction to java
Saba Ameer
 
Introduction to java
Java Lover
 
Introduction to Java Programming Language
jaimefrozr
 
Basic Java Programming
Math-Circle
 
Java basic
Sonam Sharma
 
Java 8 presentation
Van Huong
 
Introduction to java
Sandeep Rawat
 
Core Java Tutorials by Mahika Tutorials
Mahika Tutorials
 
Presentation on Core java
mahir jain
 
Introduction to Java Programming
Ravi Kant Sahu
 
JDK,JRE,JVM
Cognizant
 
Java programming course for beginners
Eduonix Learning Solutions
 
Java virtual machine
Nikhil Sharma
 
Spring boot
Gyanendra Yadav
 
History Of JAVA
ARSLANAHMED107
 
Spring Boot
Pei-Tang Huang
 
JRE , JDK and platform independent nature of JAVA
Mehak Tawakley
 
Core java slides
Abhilash Nair
 

Similar to What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka (20)

PDF
JAVA Training in Hyd PPT-converted.pdf
VijayVijji8
 
PPTX
JAVA Training in Hyd PPT.pptx
VijayVijji8
 
PDF
Java Interview Questions and Answers | Spring and Hibernate Interview Questio...
Edureka!
 
PDF
A seminar report on core java
Aisha Siddiqui
 
PDF
Certified Core Java Developer
Narender Rana
 
PDF
Core Java Certification
Vskills
 
PPTX
Java Developer Jobs PPT.pptx
optnation1
 
PPTX
Carrier Advice for a JAVA Developer How to Become a Java Programmer
jeetendra mandal
 
PPTX
brief introduction to core java programming.pptx
ansariparveen06
 
PPT
Core java day1
Soham Sengupta
 
PDF
Java Certification Tutorial | Java Tutorial For Beginners | Java Training | E...
Edureka!
 
PPTX
Java Training in Chandigarh
riyat210400
 
PPTX
Java Course for Beginners at Texceed
Samidha Takle
 
PDF
Java.pdf
Kajal Digital
 
PPTX
Java class 1
Edureka!
 
PDF
Learning Java Beginning programming with java for dummies First Edition John ...
dionegorra0l
 
PPTX
Core java introduction
Beenu Gautam
 
PDF
Learning Java Beginning programming with java for dummies First Edition John ...
anlrrsiwa9613
 
PPT
ANDROID FDP PPT
skumartarget
 
PPTX
best java training institute in Chandigarh ppt
vanshikashr2324
 
JAVA Training in Hyd PPT-converted.pdf
VijayVijji8
 
JAVA Training in Hyd PPT.pptx
VijayVijji8
 
Java Interview Questions and Answers | Spring and Hibernate Interview Questio...
Edureka!
 
A seminar report on core java
Aisha Siddiqui
 
Certified Core Java Developer
Narender Rana
 
Core Java Certification
Vskills
 
Java Developer Jobs PPT.pptx
optnation1
 
Carrier Advice for a JAVA Developer How to Become a Java Programmer
jeetendra mandal
 
brief introduction to core java programming.pptx
ansariparveen06
 
Core java day1
Soham Sengupta
 
Java Certification Tutorial | Java Tutorial For Beginners | Java Training | E...
Edureka!
 
Java Training in Chandigarh
riyat210400
 
Java Course for Beginners at Texceed
Samidha Takle
 
Java.pdf
Kajal Digital
 
Java class 1
Edureka!
 
Learning Java Beginning programming with java for dummies First Edition John ...
dionegorra0l
 
Core java introduction
Beenu Gautam
 
Learning Java Beginning programming with java for dummies First Edition John ...
anlrrsiwa9613
 
ANDROID FDP PPT
skumartarget
 
best java training institute in Chandigarh ppt
vanshikashr2324
 
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!
 
Ad

Recently uploaded (20)

DOCX
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
PDF
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
PDF
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
PDF
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
PDF
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
PDF
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
PDF
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
PPTX
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
PDF
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
PDF
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
PDF
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
PDF
Staying Human in a Machine- Accelerated World
Catalin Jora
 
PPTX
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
DOCX
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
PDF
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
PPTX
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
PPTX
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
PDF
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
PDF
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
PPTX
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 
Python coding for beginners !! Start now!#
Rajni Bhardwaj Grover
 
Reverse Engineering of Security Products: Developing an Advanced Microsoft De...
nwbxhhcyjv
 
Book industry state of the nation 2025 - Tech Forum 2025
BookNet Canada
 
Newgen Beyond Frankenstein_Build vs Buy_Digital_version.pdf
darshakparmar
 
Peak of Data & AI Encore AI-Enhanced Workflows for the Real World
Safe Software
 
POV_ Why Enterprises Need to Find Value in ZERO.pdf
darshakparmar
 
Go Concurrency Real-World Patterns, Pitfalls, and Playground Battles.pdf
Emily Achieng
 
Mastering ODC + Okta Configuration - Chennai OSUG
HathiMaryA
 
Transforming Utility Networks: Large-scale Data Migrations with FME
Safe Software
 
UiPath DevConnect 2025: Agentic Automation Community User Group Meeting
DianaGray10
 
Future-Proof or Fall Behind? 10 Tech Trends You Can’t Afford to Ignore in 2025
DIGITALCONFEX
 
Staying Human in a Machine- Accelerated World
Catalin Jora
 
Designing_the_Future_AI_Driven_Product_Experiences_Across_Devices.pptx
presentifyai
 
Cryptography Quiz: test your knowledge of this important security concept.
Rajni Bhardwaj Grover
 
The 2025 InfraRed Report - Redpoint Ventures
Razin Mustafiz
 
Agentforce World Tour Toronto '25 - Supercharge MuleSoft Development with Mod...
Alexandra N. Martinez
 
Q2 FY26 Tableau User Group Leader Quarterly Call
lward7
 
How do you fast track Agentic automation use cases discovery?
DianaGray10
 
Automating Feature Enrichment and Station Creation in Natural Gas Utility Net...
Safe Software
 
COMPARISON OF RASTER ANALYSIS TOOLS OF QGIS AND ARCGIS
Sharanya Sarkar
 

What Is Java | Java Tutorial | Java Programming | Learn Java | Edureka