LOGICAL

LOGICAL

11th Grade

6 Qs

quiz-placeholder

Similar activities

Soal Pilihan Ganda Berpikir Komputasional

Soal Pilihan Ganda Berpikir Komputasional

10th Grade - University

11 Qs

Quiz Materi Brute Force

Quiz Materi Brute Force

11th Grade

10 Qs

Bài tập củng cố: Bài 24. Xâu kí tự

Bài tập củng cố: Bài 24. Xâu kí tự

10th Grade - University

5 Qs

Programming Basics & Variables

Programming Basics & Variables

11th Grade

5 Qs

TAU X EVIDEN

TAU X EVIDEN

9th - 12th Grade

10 Qs

0- and 1-Pixel Art Activity

0- and 1-Pixel Art Activity

9th - 12th Grade

10 Qs

Network Configuration Quiz

Network Configuration Quiz

9th - 12th Grade

10 Qs

Post Test Gerbang Logika

Post Test Gerbang Logika

10th Grade - University

10 Qs

LOGICAL

LOGICAL

Assessment

Quiz

Information Technology (IT)

11th Grade

Medium

Created by

Christopher Abogado

Used 2+ times

FREE Resource

AI

Enhance your content in a minute

Add similar questions
Adjust reading levels
Convert to real-world scenario
Translate activity
More...

6 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

5 sec • 1 pt

Which logical operator is used to combine two or more conditions, and it returns True if at least one of the conditions is true. If all the conditions are false, then the result is False.

AND
NOT
XOR
OR

2.

MULTIPLE CHOICE QUESTION

5 sec • 1 pt

Which of the following logical operator combine two or more conditions and returns True if all the conditions are true. If any one of the conditions is false, the result will be False?

XOR
AND
OR
NOT

3.

MULTIPLE CHOICE QUESTION

5 sec • 1 pt

What logical operator inverts the boolean value of a given expression. It is used to negate or reverse the truth value of a condition or expression?

AND
OR
XOR
NOT

4.

FILL IN THE BLANK QUESTION

10 sec • 1 pt

If statement A and B is both True, what is the result if you use && operator? The result is ______?

5.

FILL IN THE BLANK QUESTION

10 sec • 1 pt

a=5; , b=6;

if you evaluate the expression above using NOT operator ( !(a<b) ). The result is _____?

6.

FILL IN THE BLANK QUESTION

10 sec • 1 pt

If 1st expression is False and 2nd expression is True, using logical OR the result is ______?