category

home / developersection / category

Internal Details of Java
java 16-May-2015
Internal Details of Java

We are going to learn, what happens while compiling and running the java program. Moreover, we will see some question based on the program. What happ

Bitwise and Bit Shift Operators
java 15-May-2015
Bitwise and Bit Shift Operators

The Java programming language also provides operators that perform bitwise and bit shift operations on integral types. The operators discussed in this section are less commonly used.

Equality, Relational, and Conditional Operators
java 13-May-2015
Equality, Relational, and Conditional Operators

The equality and relational operators determine if one operand is greater than, less than, equal to, or not equal to another operand. The majority of these operators will probably look familiar to you as well.

Assignment of Operators
java 11-May-2015
Assignment of Operators

The Simple Assignment OperatorOne of the most common operators that you'll encounter is the simple assignment operator "=". You saw this operator in t

Declaring a Variable to Refer to an Array
java 09-May-2015
Declaring a Variable to Refer to an Array

The preceding program declares an array (named anArray) with the following line of code:// declares an array of integers int[] anArray;Like declara

Arrays
java 07-May-2015
Arrays

An array is a container object that holds a fixed number of values of a single type. The length of an array is established when the array is created.

Default values
java 05-May-2015
Default values

It's not always necessary to assign a value when a field is declared. Fields that are declared but not initialized will be set to a reasonable default by the compiler.

primitive data type
java 04-May-2015
primitive data type

The Java programming language is statically-typed, which means that all variables must first be declared before they can be used. This involves statin

Language basics
java 03-May-2015
Language basics

Variables and Data Types Variables are locations in memory in which values can be stored. They have a name, a type, and a value. Before you can use a

Packages in OOPS
java 02-May-2015
Packages in OOPS

A package is a namespace that organizes a set of related classes and interfaces. Conceptually you can think of packages as being similar to different folders on your computer.

Interface E.g.
java 02-May-2015
Interface E.g.

interface Car {     // wheel revolutions per minute     void changeCadence(int newValue);     void changeGear(int newValue);     void spee

Interface in oops
java 30-Apr-2015
Interface in oops

I am thankful to all for reading my blogs and correct my mistake and suggest me much better about oops.I am going to discuss interface role in oops.We