0OPs (Object Orien
Programming System)
Object-oriented programming is a way
solving a complex problem by breaking
into a small sub-problem. An object is a
world entity. It is easier to develop a progra
using an object. In 0OPs, we create prog
using class and object in a structured manr
Class: A class is a template or blueprim
prototype that defines data members
methods of an object. An object is the inst
of the class. We can define a class by usin
class keyword.
PERLA
NEGRA
CS-
T SCROLL TO TOP
o Portable: Java Byte code can be carried
to any platform. No implementation-
dependent features. Everything related to
storage is predefined, for example, the
size of primitive data types.
o High Performance: Java is an interpreted
language. Java enables high performance
with the use of the Just-In-Time compiler.
oDistributed: Java also has networking
facilities. It is designed for the distributed
environment of the internet because it
supports TCP/IP protocol. It can run over
the internet. EJB and RMI are used to
create a distributed system.
o Multi-threaded: Java also supports multi-
threading. It means to handle more than
one job a time.