Tuesday, 4 February 2014

How to Redirect Visitors From Old Blog to New Blog.

       when I create a new Blog and you are traffic or visitor Problem Then Don't worry I will Solution.A Traffic/ visitor to your old blog to new blogs there are main way.Then visitor come with your Old blog to new blog .Your Mind so many Question Like This .How It is work..There are few steps Go To It.Process of how to redirect traffic From old blog to new blog:Go to your old blogger dashboard.Click on Template > > HTML.Add this below code just after the <head> Section.<meta http-equiv="refresh"...
Read More

How To create Blog In Blogger.com With Gmail Account

This is the best way To create Your Own Blog For Free hosting u will tack domain and free time u will write a post.there are many way to earn money from seating home and u make Home made billionaire from your time u will share your post,pics and videos from your blog and u will earn money from many way.There Are Advantage Of Blogger.com To Create A blog.Earn Money via Send a PostIt a Free Then No Hosting Fees PayTo share your artical,post videos and pictures.Unlimited Free space allow to share your videos and Pics.How...
Read More

Copy Constructor In java

copy-constructor
Copy Constructor :  Copy constructor is a intialize one object from other object and generally we assignment Operator to invoked copy constructor.It Intialize value from one object to another.one The object created from class then not possible to  use second time they are use with copy constructor.They inialize value from one object to copy to onother on...
Read More

which are The access Modifier In java?

Access modifier are properties of a class/method/veriable while access modifier are five typesFinalstaticSynchronizationAbstractTransientFinal :A java variable can be declared using the keyword final. Then the final variable can be assigned only once.A variable that is declared as final and not initialized is called a blank final variable. A blank final variable forces the constructors to initialise it.Java classes declared as final cannot be extended. Restricting inheritance!Methods declared as final cannot be overridden....
Read More

Monday, 3 February 2014

what is Polymorphism In Java?

poly
Polymorphism : It is greek Word poly Means Many Morphism Means Forms Thats call Many Forms."Same Class Name But Diffrent parameter call polymorphism"Example :There Are Two  Types Of PolymorphismCompile Time PolymorphismRun Time PolymorphismCompile Time Polymorphism :                                              ...
Read More

Inheritance program With access Specifier In Java.

inhewithaccess
   An Access Specifier Is a main part of java program they are not posiblity of make program with out access specifier.There are Four access Specifier In Java.publicprivateprotectedDefaultThere Are six type of  inheritance of Java.Single InheritanceMultilevel  InheritanceMultipath  InheritanceMultipal  InheritanceHybride Inheritan...
Read More

Abstract Method In Java?

Abstract:   An abstract is a return Type.It must be a extended or sub class.a abstract class contain static data.Any class with an abstract method is automatically abstract itself .Syntax : abstract class class_Name               {                     // Body               }Rules :Abstract classes are not Interface.An abstract class must have an abstarct method.Abstract classes...
Read More

Friday, 31 January 2014

Features of Android

Because Android is open source and freely available to manufacturers for customization, there are no fixed hardware or software configurations.Storage — Uses SQLite, a lightweight relational database, for data storage.Messaging — Supports both SMS and MMS. Chapter 8 discusses messaging in more detailMedia support — Includes support for the following media: H.263, H.264 (in 3GP or MP4container), MPEG-4 SP, AMR, AMR-WB (in 3GP container), AAC, HE-AAC (in MP4 or3GP container), MP3, MIDI, Ogg Vorbis, WAV, JPEG, PNG, GIF, and BMPHardware...
Read More

Version Of Android Os With Release Date?

ANDROID VERSION RELEASE DATE CODENAME1.1                 9 February 20091.5                 30 April 2009 Cupcake1.6                 15 September 2009 Donut2.0/2.1            26 October 2009 Eclair2.2                  20 May 2010 Froyo2.3                  6 December 2010 Gingerbread3.0/3.1/3.2...
Read More

What Is Disructor?

Destructor  : Desructor is member function which is destroy automatically when object is created.Destructor always must start with  ~ Key Sign.Syntax:                class class_ Name                     {                            ~  constructor Name ( )  // Destructor                 ...
Read More

What is Constructor?

Screenshot+from+2014-02-03+14:33:09
Constructor :  A constructor is a member function which is call automatically When Object is created.There Are Many Types Of constructor?copyDefault ParameterizedSyntax :  class class_name               {                    constructor ( );     // Define constructor                };Example: ...
Read More

Thursday, 30 January 2014

What Is Data Types In Programing Langauge?

Datatypes
Data Type: A Data Types Is Nothing But one Type of store location or Space in Memory  To lacate the variable in there Space.There Are Two Diffrent Types Of Data Types.byte:Byte data type is an 8-bit signed two's complement integer.Minimum value is -128 (-2^7)Maximum value is 127 (inclusive)(2^7 -1)Default value is 0Byte data type is used to save space in large arrays, mainly in place of integers, since a byte is four times smaller...
Read More

How to Permently Delete My Blog From Blogger.com

There are Step to use and your blog delete Perment. Sign in Blogger.com Then Select blog to u want to delete.Then Go To Dashbord  Menu.Then Go Setting. In the setting choose Other Categary.Then Click On Delete Blog.  Your Blog seccessfull Deleted.Few points to get use to delete..You can restore your blog from 90 days from deleting .All of your content will be secured ,safe,restore-able with 90 days of blogger blog deletion.You cannot restore your blog after 90 day of blog deletion.You will not able...
Read More

What Is Android?

what+is+android
Android is a mobile operating system that is based on a modifi ed version of Linux.It was originally developed by a startup of the same name, Android, Inc. In 2005.It was originally developed by a startup of the same name, Android, Inc. In 2005.Google purchased Android and took over its development work.Google wanted Android to be open and free; hence, most of the Android code was released under the open source Apache License.The main...
Read More

Access Specifier In c++ Or Java

access+specifiers
Defination :Access Specifiers (also Acess Modifier) Regular access to classes, fields and methods in Java.These Specifiers determine whether a field or method in a class, can be used or invoked by another method in another class or sub-class. Access Specifiers can be used to restrict access. Access Specifiers are an integral part of object-oriented programming.These access specifiers are used to set boundaries for availability of members...
Read More

Inheritance In programing Langauge

inheritance
Inheritance"  Inheritance is the Process of creating a new class  from existing class.The old class is referred to as the base class and the new classes, which are inherited from the base class, are called derived classes "Types of InheritanceThere are five different inheritances supported in C++:(1)  Single(2) Multilevel(3) Hierarchical(4) Multiple(5) Hybrid(6)Multi pathSingle Inheritance - If a class is derived from a...
Read More

Operator In C programing Langauge

460
 Operators In Programing langaugeC operator is a symbol that is used to perform mathematical or logical manipulations.Built in C language operators is rich, and provides the following types of operators: Arithmetic Operators +, -, *, /, %  Increment and Decrement Operators ++, -- Relational Operators ==, !=, >, <, >=, <= Logical Operators &&, ||, ! Bitwise Operators <<, >>,...
Read More

History Of C programming language

.com/blogger_img_proxy/
       C is a high-level structured oriented programming language, used in general purpose programming, developed by Dennis Ritchie at AT&T Bell labs, USA between 1969 and 1973. In 1988, C was formalized by American National Standard Institute (ANSI) C was invented to write UNIX operating system C is a successor of B language Linux OS, PHP and MySQL is written in C C has been written in assembly...
Read More

variable In Programing Langauge

In C langauge VariablesVariables is a memory locations in C programming language. We use variables to store data in memory for later use, and that values can be change. Values of the variables can be numeric or alphabetic. There are some rules on choosing variable names Variable name can consist of Capital letters A-Z, lowercase letters a-z, digits 0-9, and the underscore character. The first character must be a letter or underscore. Blank spaces cannot be used in variable names. Special characters...
Read More

C++ langauge Program Structure

img008
C++ langauge Program StructureDocumentation SectionPreprocessor  StatementGlobal DeclarationThe Main Function User Define FunctionExample  include <Stdio.h>  include<conio.h>    void main( )  {       printf("Hello World");              getch(); ...
Read More

Advantage Of Java programming language

1-features-of-java
Object Oriented : In Java, everything is an Object. Java can be easily extended since it is based on the Object model.Platform independent : Unlike many other programming languages including C and C++, when Java is compiled, it is not compiled into platform specific machine, rather into platform independent byte code. This byte code is distributed over the web and interpreted by virtual Machine (JVM) on whichever platform...
Read More

History of java programming language.

james-gosling_java
                    James Gosling initiated the Java language project in June 1991 for use in one of his many set-top box projects. The language, initially called Oak after an oak tree that stood outside Gosling's office, also went by the name Green and ended up later being renamed as Java, from a list of random words.Sun released the first public implementation as Java 1.0 in 1995....
Read More

Wednesday, 29 January 2014

Class in Java.

ClassDiagram
     A class Is a more inporant  concept in java langauge such this is more important part.we will define the method, variable and property then belongs to class.in class we will define a variable,method and declare them properly to the structure of class we will define class defination,syntax and Example of class In simple langauge.Class :  A class Is a collection Of  Set Of  Method And Property.Syntax:...
Read More