Java boolean Array - initializing a boolean array in java

How to declare boolean Array in Java ? Arrays are declared with [] (square brackets). If you put [] (square brackets) after any variable of any type only that variable is of type array remaining variables in that declaration are not array variables those are normal variables of that type. ................
................