KnowledgeBoat Logo

Computer Applications

What do you understand by Boolean type data? Explain with an example.

Values & Data Types Java

ICSE

81 Likes

Answer

A boolean data type is used to store one of the two boolean values — true or false. The size of boolean data type is 8 bits or 1 byte.

Example:

boolean bTest = false;

Answered By

56 Likes


Related Questions