Introduction To Java
Introduction To Java
Presented by
G. Mahesh
Assistant Professor
Department of ECE
Bapatla Engineering College
Source: Herbert Schildt , Javatpoint, geeksforgeeks
Introduction
• Java is a high level programming language that
was originally developed by Sun Microsystems
of USA and released in 1995.
• It was developed by James Gosling
• Java runs on variety of Platform
Ex: Windows, Linux, Unix etc.
• It can be expressed as
WORA – Write once Run Anywhere (The
Compiled java code can run on all platforms)
History of Java
• Java is a object oriented programming
language developed by Sun Microsystems of
USA in 1991.
• Java was designed for the development of
software to the consumer electronic devices
like TV’s, VCR’s and other electronic machines.
• The goal has a strong impact on the
development to make the language simple,
portable and highly reliable.
Cont….
• The team of the sun Microsystems model their
new language java on C and C++ but remove a
number of features of C and C++ that were
considered as source of problems and thus
made java a really simple, reliable, portable
and powerful language.
Java Milestones
• In 1990 the Sun Microsystems decided to
develop a special software that could be used
to manipulate consumer electronic devices. A
team of Sun Microsystems headed by James
Gosling to undertake this task.
• In 1991 after exploring the possibilities of
using the most popular object oriented
language C++. The Gosling Team announced a
new language named as OAK.
Cont….
• In 1992 the Team known as Green Project
Team by Sun Microsystems demonstrated the
application of their new language to control a
list of appliances using a handheld devices.
• In 1993 the World Wide Web appeared in the
internet and transform the test based internet
to the graphical rich environment.
Cont…..
• The Green Project Team came up with the
idea of developing web Applet using the new
language that could run on all types of
computers connected to the internet.
• In 1994, the Team developed a Web Browser
called Hot Java. To locate and run applet
program on internet.
Cont.....
• Hot java is the power of new language does
making it instantly popular among the internet
users.
• In 1995, The language OAK was named as
JAVA
• In 1996 java established itself not only as a
leader for the internet programming but also
as a object oriented programming language.
Cont….
• In 1996 the Sun Microsystems releases the Java
Development Kit (1.0) [JDK 1.0]
• In 1997 SMS releases the updated version of
JDK 1.0 called JDK 1.1
• In 1998, SMS releases the Java 2 with version
1.2 of Software development Kit (SDK)
• In 1999 the SMS releases Java 2 platform
Standard Edition [J2SE] and Enterprise Edition
[J2EE]
Cont…..
• In 2000, [J2SE] with [SDK 1.3] was released
• In 2002, [J2SE] with [SDK 1.4] was released
• In 2004, [J2SE] with [JDK 5.0] was released is
known as [J2SE 5.0]
Types of Applications
1) Standalone Application
• Standalone applications are also known as desktop
applications or window-based applications.
Ex: Media player, antivirus, etc.
2) Web Application
• An application that runs on the server side and
creates a dynamic page is called a web application.
Ex: Servlet, Spring, Hibernate,etc.
Cont….
3) Enterprise Application
• An application that is distributed in nature, such as
banking applications, etc. is called an enterprise
application. It has advantages like high-level
security.
4) Mobile Application
• An application which is created for mobile devices
is called a mobile application. Currently, Android
and Java ME are used for creating mobile
applications.
Java Platforms / Editions
Compiler
JRE
JVM
Compiler
• Java Compiler (JavaC) translates Source code
into Bytecode. The bytecode is Machine
independent. It can run on any machine
(Platform Independent).
for(int i=0;i<args.length;i++)
System.out.println(args[i]);
}
}
Java Control Statements (or) Control Flow in Java
if(condition)
{
statement 1; //executes when condition is true
}
else
{
statement 2; //executes when condition is false
}
public class Student
{
public static void main(String[] args)
{
int x = 10;
int y = 12;
if(x+y < 10)
{
System.out.println("x + y is less than 10");
} else
{
System.out.println("x + y is greater than 20");
}
}
}
o/p: x + y is greater than 20
3) if-else-if ladder:
if(condition 1)
{
statement 1; //executes when condition 1 is true
}
else if(condition 2)
{
statement 2; //executes when condition 2 is true
}
else
{
statement 2; //executes when all the conditions are false
}
public class Student {
public static void main(String[] args) {
String city = "Delhi";
if(city == "Meerut") {
System.out.println("city is meerut");
}else if (city == "Noida") {
System.out.println("city is noida");
}else if(city == "Agra") {
System.out.println("city is agra");
}else {
System.out.println(city);
}
}
}
Output:
Delhi
4. Nested if-statement
if(condition 1) {
statement 1; //executes when condition 1 is true
if(condition 2) {
statement 2; //executes when condition 2 is true
}
else{
statement 2; //executes when condition 2 is false
}
}
Switch Statement:
switch (expression)
{
case value1:
statement1;
break;
.
.
.
case valueN:
statementN;
break;
default:
default statement;
}
public class Student
{
public static void main(String[] args) {
int num = 2;
switch (num)
{
case 0:
System.out.println("number is 0");
break;
case 1:
System.out.println("number is 1");
break;
default:
System.out.println(num);
}
}
}
Output:
2
Loop Statements
}
Output: