Binary
Boolean Algebra
Python Math
Data Types
Fun (Other)
100

Convert the binary number 1010 to decimal.

What is 10?

100

What is the result of True AND False AND False.

What is False?

100

a = 3

b = 7

b = a

print(b)

What is 3?

100

x = 5

print(type(x))

what is an integer?

100

I’m tall when I’m young, and I’m short when I’m old. What am I?

What is a candle?

200

Convert the decimal number 7 to binary.

What is 111?

200

What is True OR False OR True OR True OR False.

What is True?

200

p = 2

q = p + 3

p = 5

print(q)

What is 5?

200

y = 3.14

print(type(y))

what is a float?

200

What can travel around the world while staying in the same spot?

What is a stamp?

300

Convert the 8-bit binary number 00010010 to decimal.

What is 18?

300
  • Part A: What is False OR False?

  • Part B: What is NOT (False OR False)?

  • Part C: What is True AND NOT (False OR False)?

  • Part A: What is False?

  • Part B: What is True?

  • Part C: What is True?

300

x = 3

y = 5

z = x + y

y = z - x

print(y)

What is 5?

300

a) flag = True

print(type(flag))


b) name = "Shoubhit"

print(type(name))


What is a Boolean?


What is a String?

300

What has hands but can’t clap?

What is a clock?

400

Which binary number represents the decimal number 25?

What is 11001?

400
  • Part A: What is (True OR False) AND (NOT False)?

  • Part B: What is NOT (True AND (False OR False))?

  • Part C: What is Part A AND Part B?

  • Part A: What is True?

  • Part B: What is True?

  • Part C: What is True?

400

a = 5

b = a * 2

a = b + 3

b = a - 4

print(b)

What is 9?

400

a = "123"

b = int(a) + 5.5

print(type(b))

what is a float?

400

What has keys but can’t open locks?

What is a piano?

500

Convert the hexadecimal number A2B to decimal.

What is 2603?

500
  • Part A: (NOT True OR False) AND (True OR NOT False)

  • Part B: NOT (False AND (True OR False)) OR (True AND NOT True)

  • Part C: Part A OR Part B

  • Part A: What is False?

  • Part B: What is True?

  • Part C: What is True?

500

m = 10

n = m - 4

m = n * 3

print(m // 2)

What is 9?

500

x = [1, 2, 3]

y = str(x)

z = type(y)

print(z)

what is a string?

500

The more you take, the more you leave behind. What am I?

What are footsteps?