Show:
Questions
Responses
Print
Binary Representation
Text Compression
Image Representation
Logic Gates
Python
100
The highest number that can be created with four bits
What is 15?
100
This is Q in the Huffman encoding tree
What is 000011011?
100
When we zoom out of an image, this is why it becomes clear
What is resolution?
100
When the and gate has input 1, 1; the or gate has input 1, 0 and the exor gate has input 1,0; the outputs are the same. It is this value.
What is true/1?
100
This symbol is used to multiply in Python
What is *
200
the highest # you can get w/ 8 bits.
What is 255?
200
This Morse code represents the letter “V”.
What is …- [Three dots, one dash]
200
This is how you store pixels without over complicating things.
What is Run Length Encoding?
200
The input to and gates are 0,1; or gate 0, 0 and xor gate is 1,1; the outputs are the same from each gate. The output is this.
What is false/0?
200
This is what you type to make Python say “Hello World”.
What is print "Hello World"?
300
first binary bit in binary number 11111111 in decimal
What is 128?
300
These letters have the longest lengths that can be used in the Huffman Tree.
What is Z, J, X, or Q.
300
In run length encoding, these two colors represent pixels are used to create an image.
What are black and white?
300
This gate creates the carry over bit in the binary adder
What is the and gate?
300
127%3 in Python
What is 1?
400
This is the maximum number you can create with your binary piano.
what is 511
400
letter frequency of A in alice in wonderland
What is 8.2%
400
This sequence of numbers will produce a white square, a black square, and a white square like this wbw (b=black/w=white)
what is 1 1 1 ?
400
X in decimal if the binary equation is 10+11=X.
What is 5?
400
The meaning of == is this
What is equality check?
500
This is how many combinations can you make with your binary piano
what is 512
500
This is the tenth most frequent letter used in Alice in Wonderland? [4.6%]
What is “D”?
500
This sequence of numbers will produce one black square.
what is 01?
500
In the mystery circuit, you add these to get CDE.
What is A1B1+A2B2
500
Three operators that are used in Python
What are / * %