LOGICAL

LOGICAL

11th Grade

6 Qs

quiz-placeholder

Similar activities

SQL OPERATORS AFL

SQL OPERATORS AFL

11th Grade - University

5 Qs

Comparison Operators

Comparison Operators

9th - 12th Grade

6 Qs

Kuis Informatika Algoritma dan Pemrograman Dasar

Kuis Informatika Algoritma dan Pemrograman Dasar

10th Grade - University

10 Qs

js expressions

js expressions

11th Grade

9 Qs

Quiz PHP

Quiz PHP

9th - 12th Grade

10 Qs

Jaringan dan Routing

Jaringan dan Routing

11th Grade

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