In a developer point of view JAVA is a programming language like many other PL’s, offering paramount features like simplicity, robustness, platform independence, oop’s logic promoter, efficient memory management and many others, all these make’s JAVA a powerful and dominent tool for building software applications. But boundary of JAVA extends much beyond. One of […]
JavaOS
Posted in Java Development by admin - Dec 19 2011
Characteristics of Object Oriented Systems
Posted in Java Development by admin - Dec 16 2010
Object Oriented Programming is a problem solving technique to develop software systems. It’s a technique to think real world in terms of objects. Object maps the software model to real world concept. These objects have responsibilities and provide services to application or other objects. The characteristics of Object Oriented System’s are given below. […]
What is Serialization?
Posted in Java Development by admin - Aug 19 2010
What is Serialization Serialization involves preserving an instance/object of a class for its later use.The datas preserved represents that partial internal state of particular instance /object of a class.It stores data such as variable names,values,data type etc.The contents are stored in a RAM(transient container) or disks,file(persistent container).The RAM(transient container) is used to store objects […]