there are 4 Boolean operations and, or not and exclusive or:
And is only true when all conditions are true. (&&)
Or is true when both or either one of the conditions are true (||)
Exclusive or, as long as all conditions are true or false it returns a false (^)
not negates the condition (!)
A year is a leap year if it is divisible by 4 but not by 100 or if it is divisible by 400. So you can use the following Boolean expression to check whether a year is a leap year:
(year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)
On this page of the site you can watch the video online Boolean data Types - Practical with a duration of hours minute second in good quality, which was uploaded by the user ke 04 September 2023, share the link with friends and acquaintances, this video has already been watched 27 times on youtube and it was liked by 1 viewers. Enjoy your viewing!