SlideShare a Scribd company logo
Introduction Of Java
 Java is a high-level programming language developed
by Sun Microsystems.
 It was originally designed for developing programs for
set-top boxes and handheld devices, but later became
a popular choice for creating web applications.
 It is the most popular programming language for
Android smartphone applications and is among the
most favored for edge device and internet of
things development.
 James Gosling, Mike Sheridan, and Patrick Naughton
initiated the Java language project in June 1991. The
small team of sun engineers called Green Team.
 Originally designed for small, embedded systems in
electronic appliances like set-top boxes.
 Firstly, it was called "Greentalk" by James Gosling and
file extension was .gt.
 After that, it was called Oak and was developed as a
part of the Green project.
 Object Oriented
 Compiled and Interpreted Language
 Simple
 Platform Independent
 Architectural Neutral
 Dynamic and Extensible
 Object Oriented
• Portable
• Multi Threading
• Distributed
• Networked
• More Secure Any Robust
• Secured
• High Performance
 class keyword is used to declare a class in java.
 Object − Objects have states and behaviors. Example: A dog has
states - color, name, breed as well as behavior such as wagging
their tail, barking, eating. An object is an instance of a class.
 static is a keyword, if we declare any method as static, it is known
as static method.
 void is the return type of the method, it means it
doesn't return any value.
 main represents startup of the program.
 String[] args is used for command line argument. We
will learn it later.
 System.out.println() is used print statement. We will
learn about the internal working of System.out.println
statement later.
Example : Creating hello java
class Simple
{
public static void main(String args[])
{
System.out.println("Hello Java");
}
}
Output:Hello Java

More Related Content

PPT
Basic concepts of object oriented programming
PDF
0-oop java-intro
PPTX
Object oriented programming
PPT
Oops ppt
PPT
Object-Oriented Concepts
PPT
Basic concept of OOP's
PPT
1 Intro Object Oriented Programming
PPTX
Object Oriented Programming Principles
Basic concepts of object oriented programming
0-oop java-intro
Object oriented programming
Oops ppt
Object-Oriented Concepts
Basic concept of OOP's
1 Intro Object Oriented Programming
Object Oriented Programming Principles

Similar to Introduction Of Java (20)

PPT
JAVA_INTRODUCTION- History, Constructor, Inheritance
PPT
JAVA_INTRODUCTION- History, Constructor, Inheritance
PPTX
PROGRAMMING IN JAVA unit 1.pptx
PPTX
Java
PPTX
1 .java basic
PPTX
Java introduction
PDF
java ppt.pdf
PPTX
Basic Object Oriented Programming in JAVA.pptx
PPTX
Java technology is widely used currently. Let's start learning of java from b...
PDF
Java trainingcourse(1)
PPTX
Java 2 computer science.pptx
PPTX
Java basics
PPTX
PPTX
PPTX
PPTX
PPTX
PPTX
PDF
what is java.pdf
PPTX
Module1_htryjtjhkrhdegtfhsfhrdgfhpart1.pptx
JAVA_INTRODUCTION- History, Constructor, Inheritance
JAVA_INTRODUCTION- History, Constructor, Inheritance
PROGRAMMING IN JAVA unit 1.pptx
Java
1 .java basic
Java introduction
java ppt.pdf
Basic Object Oriented Programming in JAVA.pptx
Java technology is widely used currently. Let's start learning of java from b...
Java trainingcourse(1)
Java 2 computer science.pptx
Java basics
what is java.pdf
Module1_htryjtjhkrhdegtfhsfhrdgfhpart1.pptx
Ad

Recently uploaded (20)

PPTX
Construction Project Organization Group 2.pptx
PPTX
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
PDF
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
PPTX
Internet of Things (IOT) - A guide to understanding
PPTX
UNIT 4 Total Quality Management .pptx
PPTX
web development for engineering and engineering
PDF
Model Code of Practice - Construction Work - 21102022 .pdf
PPTX
additive manufacturing of ss316l using mig welding
PPT
Project quality management in manufacturing
PPTX
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
PPTX
bas. eng. economics group 4 presentation 1.pptx
PPTX
CH1 Production IntroductoryConcepts.pptx
PPT
Mechanical Engineering MATERIALS Selection
PPTX
Geodesy 1.pptx...............................................
PDF
composite construction of structures.pdf
PPTX
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
PPTX
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
PPT
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
PDF
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PDF
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Construction Project Organization Group 2.pptx
M Tech Sem 1 Civil Engineering Environmental Sciences.pptx
keyrequirementskkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkkk
Internet of Things (IOT) - A guide to understanding
UNIT 4 Total Quality Management .pptx
web development for engineering and engineering
Model Code of Practice - Construction Work - 21102022 .pdf
additive manufacturing of ss316l using mig welding
Project quality management in manufacturing
KTU 2019 -S7-MCN 401 MODULE 2-VINAY.pptx
bas. eng. economics group 4 presentation 1.pptx
CH1 Production IntroductoryConcepts.pptx
Mechanical Engineering MATERIALS Selection
Geodesy 1.pptx...............................................
composite construction of structures.pdf
Engineering Ethics, Safety and Environment [Autosaved] (1).pptx
Infosys Presentation by1.Riyan Bagwan 2.Samadhan Naiknavare 3.Gaurav Shinde 4...
CRASH COURSE IN ALTERNATIVE PLUMBING CLASS
Evaluating the Democratization of the Turkish Armed Forces from a Normative P...
PRIZ Academy - 9 Windows Thinking Where to Invest Today to Win Tomorrow.pdf
Ad

Introduction Of Java

  • 2.  Java is a high-level programming language developed by Sun Microsystems.  It was originally designed for developing programs for set-top boxes and handheld devices, but later became a popular choice for creating web applications.  It is the most popular programming language for Android smartphone applications and is among the most favored for edge device and internet of things development.
  • 3.  James Gosling, Mike Sheridan, and Patrick Naughton initiated the Java language project in June 1991. The small team of sun engineers called Green Team.  Originally designed for small, embedded systems in electronic appliances like set-top boxes.  Firstly, it was called "Greentalk" by James Gosling and file extension was .gt.  After that, it was called Oak and was developed as a part of the Green project.
  • 4.  Object Oriented  Compiled and Interpreted Language  Simple  Platform Independent  Architectural Neutral  Dynamic and Extensible  Object Oriented
  • 5. • Portable • Multi Threading • Distributed • Networked • More Secure Any Robust • Secured • High Performance
  • 6.  class keyword is used to declare a class in java.  Object − Objects have states and behaviors. Example: A dog has states - color, name, breed as well as behavior such as wagging their tail, barking, eating. An object is an instance of a class.  static is a keyword, if we declare any method as static, it is known as static method.
  • 7.  void is the return type of the method, it means it doesn't return any value.  main represents startup of the program.  String[] args is used for command line argument. We will learn it later.  System.out.println() is used print statement. We will learn about the internal working of System.out.println statement later.
  • 8. Example : Creating hello java class Simple { public static void main(String args[]) { System.out.println("Hello Java"); } } Output:Hello Java