Want to create interactive content? It’s easy in Genially!

Reuse this genially

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:

Process Flow: Corporate Recruitment

Weekly Corporate Challenge

Wellbeing and Healthy Routines

Match the Verbs in Spanish: Present and Past

Planets Sorting Game

Syllabus Organizer for Higher Education

Internal Guidelines for Artificial Intelligence Use

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)