What do you understand by Boolean type data ? Explain with an example.
3 Likes
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
1 Like
Differentiate between Separator and Punctuator
Write down the Data type of the following:
(a) Integer
(b) Long Integer
(c) A fractional number
(d) A special character
Define Implicit type conversion with an example.
Define Explicit type conversion with an example.