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