#087 Topic 3.6 Video 1

#087 Topic 3.6 Video 1

11th Grade

5 Qs

quiz-placeholder

Similar activities

Comparison operators

Comparison operators

6th - 11th Grade

9 Qs

If-Else in Java

If-Else in Java

9th - 12th Grade

10 Qs

Boolean Expressions

Boolean Expressions

10th - 12th Grade

6 Qs

11 - IF ELSE

11 - IF ELSE

11th Grade

10 Qs

Pictorial Drawings

Pictorial Drawings

9th - 12th Grade

10 Qs

bài tập(tiết 6)

bài tập(tiết 6)

11th Grade

10 Qs

Kiểm tra 15 phút Tin học 10 - DA - Bài 26,27,28

Kiểm tra 15 phút Tin học 10 - DA - Bài 26,27,28

10th Grade - University

10 Qs

Operators in C

Operators in C

9th - 12th Grade

10 Qs

#087 Topic 3.6 Video 1

#087 Topic 3.6 Video 1

Assessment

Quiz

Computers

11th Grade

Medium

Created by

Myra Deister

Used 4+ times

FREE Resource

5 questions

Show all answers

1.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

View the video at: https://apclassroom.collegeboard.org/d/io7050z1ev?sui=8,3

DeMorgan's Law involve _______________

Logical operators

Relational Operators

Arithmetic Operators

Order of Operations

2.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

DeMorgan's Law says that !(a && b) is equivalent to ________________

!(a || b)
!(a) && !(b)
!(a) || !(b)
a && b

3.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Select an equivalent expression for !(x > 0).

x = 0

x > 0

x< = 0

x != 0

4.

DRAW QUESTION

3 mins • 1 pt

On Number Line A sketch (x < -5 || x > 10).

On Number Line B sketch !(x < -5 || x > 10).

Media Image

5.

MULTIPLE CHOICE QUESTION

30 sec • 1 pt

Which of the following is the same as the code below?

!(x == 2 && y > 4)

x != 2 || y <= 4
x == 2 || y > 4
x != 2 && y > 4
x == 2 && y <= 4