0% found this document useful (0 votes)
2 views3 pages

What is Java

Java is a high-level, class-based, object-oriented programming language created by James Gosling in 1995, originally intended for the television industry. It is platform-independent, secure, and features a simple syntax, making it popular for developing web, mobile, and desktop applications. The name 'Java' was inspired by coffee, as the team sought a unique and easy-to-pronounce name after the original name 'OAK' was trademarked.

Uploaded by

swati848285
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2 views3 pages

What is Java

Java is a high-level, class-based, object-oriented programming language created by James Gosling in 1995, originally intended for the television industry. It is platform-independent, secure, and features a simple syntax, making it popular for developing web, mobile, and desktop applications. The name 'Java' was inspired by coffee, as the team sought a unique and easy-to-pronounce name after the original name 'OAK' was trademarked.

Uploaded by

swati848285
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 3

Java assignment

What is java ?

Java is a high level, class-based object-oriented programming


language.
Java is platform independent
It is used for developing web application ,mobile applications and
desktop applications.
Explain brief history of java.
Java programming language was created by James Gosling in 1995. The
original idea was to design a language for the television industry. Gosling
worked along with his team also called the Green Team and the project they
worked on was called Greentalk. This project was later named as OAK. The
name OAK has its roots to the oak tree that stood outside Gosling’s office.
This name had to be dropped later as it was already a trademark by Oak
Technologies.
So how was the name Java suggested?
Since the language could no longer be named OAK, Gosling and his team had
to come up with new name. The team considered various names like DNA,
RUBY, JAVA, jolt, dynamic, revolutionary, SILK.
But the name had to unique and quite easy to say. The name JAVA occurred
in gosling’s mind while having a cup of coffee at his office.

Explain the features of java.

Java is a programming language it's used for creating an


application in a simple way.
There are some excellent features which play an important role
in the popularity of this language. The features of Java are also
known as Java buzzwords.
Simple :- java is very easy to learn. Its syntax is simple and clean and easy to
understand.
Java syntax is based on C++

Object oriented - Java is an object-oriented programming language


Java assignment

In java, everything is an object which has some data and


behaviour. Java can be easily extended as it is based on
Object Model. Following are some basic concept of OOP's.
Platform independent – java is a platform independent
language because java complied source code into byte code by
the JVM and byte code is a machines level language which is
easily understand by all operating system device.
Secure -When it comes to security, Java is always the first
choice. With java secure features it enable us to develop
virus free, temper free system. Java program always runs in
Java runtime environment with almost null interaction with
system OS, hence it is more secure.
Portable Java is portable because it facilitates you to carry the Java
bytecode to any platform.
Write a hello world program and explain!
Public class main {
Public static void main (“Strings args[])
{
System.out.println(“ hello world”);
}
}
Explanation-
Public- public is a access modifier it’s means visible to all.
Class- class is a keyword use to declare class in java ( claas is a
group of objects)
{}-
Java assignment

You might also like