LOGICAL

LOGICAL

11th Grade

6 Qs

quiz-placeholder

Similar activities

Intro to JS: Functions, Scope & Objects

Intro to JS: Functions, Scope & Objects

11th Grade - University

8 Qs

seleksi osn informatika

seleksi osn informatika

11th Grade

10 Qs

G9-Introduction to Python Selection

G9-Introduction to Python Selection

9th Grade - University

6 Qs

Python Module 2 Section 6 Review

Python Module 2 Section 6 Review

11th Grade

10 Qs

Scratch Kelas 7

Scratch Kelas 7

7th Grade - University

10 Qs

Condition Programming Quiz

Condition Programming Quiz

1st Grade - University

9 Qs

Jaringan Komputer dan Internet (Deteksi Kesalahan dengan CRC)

Jaringan Komputer dan Internet (Deteksi Kesalahan dengan CRC)

11th Grade

5 Qs

C++ Structuri repetitive

C++ Structuri repetitive

8th Grade - University

7 Qs

LOGICAL

LOGICAL

Assessment

Quiz

Information Technology (IT)

11th Grade

Medium

Created by

Christopher Abogado

Used 1+ times

FREE Resource

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 ______?