Computer Science
What is meant by boolean type data? Explain with an example.
Values & Data Types Java
3 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
2 Likes