AJAX means Asynchronous JavaScript and XML. It is a web development technique for creating interactive web applications. Ajax helps to make web pages feel more responsive by exchanging small amounts of data with the server behind the scenes, so that read more…

No comments
Posted on November 21st, 2008, by admin
Category:
Uncategorized
• XML stands for EXtensible Markup Language
• XML is a markup language much like HTML.
• XML was designed to describe data.
• XML tags are not predefined in XML. You must define your own tags.
• XML is self describing.
• XML uses a DTD (Document Type Definition) to formally describe the data.

No comments
Posted on November 20th, 2008, by Manoj Shah
Category:
XML
A thread is a lightweight process which exist within a program and executed to perform a special task. Several threads of execution may be associated with a single process. Thus a process that has only one thread is referred to read more…

11 comments
Posted on November 12th, 2008, by Manoj Shah
Category:
JAVA,
OOPS
Overview of Thread
Threading concept is very important in Java Programming language. A thread is a sequential path of code execution within a program. And each thread has its own local variables, program counter and lifetime.
Life Cycle of A Thread
Life Cycle read more…

31 comments
Posted on November 12th, 2008, by Manoj Shah
Category:
JAVA,
OOPS
It is the enhancement of the concept of inheritance. When a subclass is derived from a derived class then this mechanism is known as the multilevel inheritance. The derived class is called the subclass or child class read more…

No comments
Posted on November 12th, 2008, by Manoj Shah
Category:
JAVA,
OOPS
When a subclass is derived simply from it’s parent class then this mechanism is known as simple inheritance. In case of simple inheritance there is only a sub class and it’s parent class. It is also called read more…

No comments
Posted on November 12th, 2008, by Manoj Shah
Category:
JAVA,
OOPS
To know the concept of inheritance clearly you must have the idea of class and its features like methods, data members, access controls, constructors, keywords this, super etc.
As the name suggests, inheritance means to take something that read more…

No comments
Posted on November 12th, 2008, by admin
Category:
Uncategorized
Introduction to OOP
Object Oriented Programming or OOP is the technique to create programs based on the real world. Unlike procedural programming, here in the OOP programming model programs are organized around objects and data rather than actions read more…

No comments
Posted on November 12th, 2008, by Manoj Shah
Category:
JAVA,
OOPS
Java is a object oriented programming and to understand the functionality of OOP in Java, we first need to understand several fundamentals related to objects. These include class, method, inheritance, encapsulation, abstraction, polymorphism etc.
Class – It is the central point read more…

No comments
Posted on November 12th, 2008, by Manoj Shah
Category:
JAVA,
OOPS
Everyone that wants to program JavaScript should at least try reading the following section. If you have trouble understanding it, don’t worry. The best way to learn JavaScript is from the examples presented in this tutorial. After you have been read more…

No comments
Posted on November 5th, 2008, by admin
Category:
Uncategorized