Tuesday, April 17, 2007

What is byte?

A sequence of eight bits. Java provides a corresponding byte type.


SOURCE : www.referjava.com

What is break ?

A Java keyword used to resume program execution at the statement immediately following the current statement. If followed by a label, the program resumes execution at the labeled statement.


SOURCE : www.referjava.com

What is boolean ?

Refers to an expression or variable that can have only a true or false value. The Java programming language provides the boolean type and the literal values true and false.


SOURCE : www.referjava.com

What is a block ?

In the Java programming language, any code between matching braces. Example: { x = 1; }.


SOURCE : www.referjava.com

What is bitwise operator ?

An operator that manipulates the bits of one or more of its operands individually and in parallel. Examples include the binary logical operators (&, |, ^), the binary shift operators (<<, >>, >>>) and the unary one's complement operator (~).


SOURCE : www.referjava.com

What is bit ?

The smallest unit of information in a computer, with a value of either 0 or 1.


SOURCE : www.referjava.com

What is binary operator ?

An operator that has two arguments.


SOURCE : www.referjava.com