This is default featured post 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Tuesday, 21 May 2013

Pointer Arithmetic

All types of arithmetic operations are impossible with a pointer. The only valid operations that can be performed are as-1. Addition of integer to a pointer and increment operations.2. Subtraction of an integer from a pointer and decrement operations.3. Subtraction of a pointer from another pointer of same typepointer arithmetic is somewhat different from ordinary arithmetic. Here all arithmetic is performed relative to the size of basic type of pointer.For example, If we have an integer pointer pi which contains address 1000, then on incrementing...

Saturday, 11 May 2013

What Is Hungarian?

Hungarian notation:It is one of the naming conventions followed by the sun micro system for naming predefined, class/interface/predefined methods and data methods.HungarianRule 1 for class and interface "If any class name or interface name", is containing either one word or more than one word. All words first letter must be capital.EX:        Normal Notation                     Hungarian  Notation   System Action...

Thursday, 9 May 2013

Difference Between Instance Data Member and Static Data Members

 Types of data members in Java:We known that every single java program must be written with respect to class, and a class is containing a collection of data members and method. In Java program data members from the class are classified as two types. They are  1.  Instance data member’s    2.  static data members            Instance data members         Static data members 1. Instance's data members are those whose memory space...

Tuesday, 7 May 2013

Difference Between Class and Object in Java?

Definition of class:- Class is a collection of data members and associated methods.Definition of object:- Blue print of class is known as object  Different between class and object is follow                     Class                        Object 1.The process of binding the data member and associated methods. In a single unit...

Saturday, 4 May 2013

What Is Constructor in Java?

 A constructor is a special member method which will call by the JVM automatically whenever an object is created by placing over own values without placing the default value.Advantages of constructors:If we use the constructor concept add a part of over the java program, we get the following advantage.1. It eliminates in placing default values.2. It eliminates in calling ordinary method. The purpose of constructor concept is that it initialized  the object..Properties/characteristic of constructor: In over the java program, if we...

Thursday, 2 May 2013

What Is Different Between Instant Methods and Static Methods?

Each and every class of java contains a collection of methods the methods of java are divided into two types. They are1. Instance methods/non static methods.2. Static methods.                     Instant methods                    Static methods 1. Instance methods are those, which are recommended to perform Repeated operations such as reading the records...

Page 1 of 8012345Next
Twitter Delicious Facebook Digg Stumbleupon Favorites More