Tuesday, April 17, 2007

What is char ?

A Java keyword used to declare a variable of type character.

SOURCE : www.referjava.com

What is casting ?

Explicit conversion from one data type to another.

SOURCE : www.referjava.com

What is case ?

A Java keyword that defines a group of statements to begin executing if a value specified matches the value defined by a preceding switch keyword.


SOURCE : www.referjava.com

What is BufferedWriter ?

This class is used to make low-level Writer classes like FileWriter more efficient and easier to use. BufferedWriters write relatively large chunks of data to a file at once.

SOURCE : www.referjava.com

What is BufferedReader ?

This class is used to make low-level Reader classes like FileReader more efficient and easier to use.BufferedReaders read relatively large chunks of data from a file at once and keep this data in a buffer.


SOURCE : www.referjava.com

What is Boxing?

Allows you to convert primitives to wrappers or to convert wrappers to primitives.


SOURCE : www.referjava.com

What is bytecode ?

Machine-independent code generated by the Java compiler and executed by the Java interpreter.


SOURCE : www.referjava.com