You are on page 1of 7

ORAL PRESENTATION OF JAVA

PROGRAMING LANGUAJE

TEACHER: LERVIN MARCANO STUDENT: JEAN BETANCOURT


HISTORY OF JAVA
In 1991, a small group of Sun engineers called the "Green Team"
believed that the next wave in computing was the union of digital consumer
devices and computers. Led by James Gosling, the team worked around
the clock and created the programming language that would revolutionize
our world Java.

The Green Team demonstrated their new language with an


interactive, handheld home-entertainment controller that was originally
targeted at the digital cable television industry. Unfortunately, the concept
was much too advanced for the team at the time. But it was just right for
the Internet, which was just starting to take off. In 1995, the team
announced that the Netscape Navigator Internet browser would incorporate
Java technology.
WHAT IS JAVA?
Is a general-purpose computer programming language that
is concurrent, class-based, object-oriented, and specifically designed to
have as few implementation dependencies as possible. It is intended to
let application developers "write once, run anywhere" (WORA), meaning
that compiled Java code can run on all platforms that support Java
without the need for recompilation. Java applications are typically
compiled to bytecode that can run on any Java virtual machine (JVM)
regardless of computer architecture. As of 2016, Java is one of the
most popular programming languages in use, particularly for client-server
web applications, with a reported 10 million developers.
HOW WORKING JAVA?

Abstraction is a way to extract common methods and properties. In


Java, abstraction is used when we have methods or properties that are
repeated in many classes that usually have something in common..
HOW WORKING JAVA?
The encapsulation of the way to hide how the state has been
implemented, the attributes of an object. This state is accessed through
public methods, that is, its public interface.
HOW WORKING JAVA?
Inheritance is a mechanism that allows the definition of a class
from the definition of another already existing. Inheritance allows you to
automatically share methods and data between classes, subclasses
and objects.
HOW WORKING JAVA?
The Polymorphism refers to the property by which it is possible
to send syntactically equal messages to objects of different types.

You might also like