Last active
June 2, 2022 23:07
-
-
Save eduardojesus12/08ce5e3b9b94460b4ccfa22497178e54 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Actividad 1: Si X, Y y Z son variables de tipo boolean con valores X = true, Y = false, Z = true, determina el valor de las siguientes expresiones lógicas: | |
a) (X && Y) || (X && Z) b) (X || !Y)&& (!X || Z) | |
c) X || Y && Z d) !(X || Y) && Z | |
e) X || Y || X && !Z && !Y f) !X || !Y || Z && X && !Y | |
Actividad 2: Si W, X, Y y Z son variables de tipo boolean con valores W = false, X = true, Y = true, Z = false, determina el valor de las siguientes expresiones lógicas: | |
a) W || Y && X && W || Z b) X && !Y && !X || !W && Y | |
c) !(W || !Y) && X || Z d) X && Y && W || Z || X | |
e) Y || !(Y || Z && W) f) !X && Y && (!Z || !X) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment