Can anyone explaine about bool keyword? | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 2

Can anyone explaine about bool keyword?

4th Sep 2016, 1:28 PM
vijay rengan
vijay rengan - avatar
5 Answers
+ 2
bool uses true or false boolean logic, it only requires 1 bit of memory 1/0 true/false however a byte is allocated as most cpu architecture deal with byte pointers and not bit by bit, however some older computers will allocate it as only one bit, although this is of no real matter as now days computers have millions upon billions of bytes
4th Sep 2016, 10:04 PM
Null Void
Null Void - avatar
0
it is used for true or false, So if the condition is not true clearly is going to be false
4th Sep 2016, 2:14 PM
Daniel Rojas
Daniel Rojas - avatar
0
it is used for true and false if the condition is true then it will give 1 as the output and if the condition is false then the output is 0
4th Sep 2016, 4:11 PM
kartik
0
bool is only two answer true or false like switch on or off .here true is equal to 1 and false equal to 0
4th Sep 2016, 5:03 PM
Dixit Parkhiya
Dixit Parkhiya - avatar
0
bool is keyword to define a boolean data types. variable with boolean datatype can only accept true or false.
10th Sep 2016, 1:31 PM
gmzdev
gmzdev - avatar