Convert the binary number 1010 to decimal.
What is 10?
What is the result of True AND False AND False.
What is False?
a = 3
b = 7
b = a
print(b)
What is 3?
x = 5
print(type(x))
what is an integer?
I’m tall when I’m young, and I’m short when I’m old. What am I?
What is a candle?
Convert the decimal number 7 to binary.
What is 111?
What is True OR False OR True OR True OR False.
What is True?
p = 2
q = p + 3
p = 5
print(q)
What is 5?
y = 3.14
print(type(y))
what is a float?
What can travel around the world while staying in the same spot?
What is a stamp?
Convert the 8-bit binary number 00010010 to decimal.
What is 18?
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?
x = 3
y = 5
z = x + y
y = z - x
print(y)
What is 5?
a) flag = True
print(type(flag))
b) name = "Shoubhit"
print(type(name))
What is a Boolean?
What is a String?
What has hands but can’t clap?
What is a clock?
Which binary number represents the decimal number 25?
What is 11001?
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?
a = 5
b = a * 2
a = b + 3
b = a - 4
print(b)
What is 9?
a = "123"
b = int(a) + 5.5
print(type(b))
what is a float?
What has keys but can’t open locks?
What is a piano?
Convert the hexadecimal number A2B to decimal.
What is 2603?
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?
m = 10
n = m - 4
m = n * 3
print(m // 2)
What is 9?
x = [1, 2, 3]
y = str(x)
z = type(y)
print(z)
what is a string?
The more you take, the more you leave behind. What am I?
What are footsteps?