0% found this document useful (0 votes)
6 views1 page

Java Notes Handwritten Style

The document provides an introduction to Java programming, highlighting its development by James Gosling at Sun Microsystems. It explains the concepts of classes as blueprints for creating objects and objects as instances of classes representing real-world entities. An example is given where 'Car' is a class and 'BMW' and 'Audi' are objects.

Uploaded by

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

Java Notes Handwritten Style

The document provides an introduction to Java programming, highlighting its development by James Gosling at Sun Microsystems. It explains the concepts of classes as blueprints for creating objects and objects as instances of classes representing real-world entities. An example is given where 'Car' is a class and 'BMW' and 'Audi' are objects.

Uploaded by

ramyargowda1113
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

JAVA PROGRAMMING

UNIT 1

Introduction to Java:
Developed by James Gosling at Sun Microsystems. Java is a high-level, object-oriented programming lang

Class
• A class is a blueprint or template used to create objects.
• It defines variables and methods.

Object
• An object is an instance of a class.
• It represents a real-world entity and uses the properties of a class.

Example
• For example, Car is a class and BMW, Audi are objects.

You might also like