TRUE
5 > 3 && 2 < 7 && !("sol" == "luna")
TRUE
"hola" == "hola" && "cielo".Length == 5 && !(3 == 7)
TRUE
"perro" != "gato" || 3 * 2 == 6 && !("mundo".Length > 10)
TRUE
"azul" != "verde" && 8 - 3 == 5 && !("rojo" == "azul")
FALSE
"mañana" == "tarde" && (2 + 2 == 4 || "abc".Length == 3)
TRUE
3 * 5 < 20 && !("nube" == "lluvia")
FALSE
"hi" == "hola" || 9 - 5 == 3 && !("sol" != "luz")
TRUE
"mar" + "tierra" == "martierra" && 8 / 4 == 2
TRUE
"casa".Length + "perro".Length == 9 || "agua" == "fuego"
10
TRUE
"montaña" != "valle" && !("luz".Length == 2)
Operadores Lógicos II
GENIS GILAVERT BERLA
Created on September 14, 2023
Start designing with a free template
Discover more than 1500 professional designs like these:
View
Process Flow: Corporate Recruitment
View
Weekly Corporate Challenge
View
Wellbeing and Healthy Routines
View
Match the Verbs in Spanish: Present and Past
View
Planets Sorting Game
View
Syllabus Organizer for Higher Education
View
Internal Guidelines for Artificial Intelligence Use
Explore all templates
Transcript
TRUE
5 > 3 && 2 < 7 && !("sol" == "luna")
TRUE
"hola" == "hola" && "cielo".Length == 5 && !(3 == 7)
TRUE
"perro" != "gato" || 3 * 2 == 6 && !("mundo".Length > 10)
TRUE
"azul" != "verde" && 8 - 3 == 5 && !("rojo" == "azul")
FALSE
"mañana" == "tarde" && (2 + 2 == 4 || "abc".Length == 3)
TRUE
3 * 5 < 20 && !("nube" == "lluvia")
FALSE
"hi" == "hola" || 9 - 5 == 3 && !("sol" != "luz")
TRUE
"mar" + "tierra" == "martierra" && 8 / 4 == 2
TRUE
"casa".Length + "perro".Length == 9 || "agua" == "fuego"
10
TRUE
"montaña" != "valle" && !("luz".Length == 2)