Show:
Questions
Responses
Print
Binary to Decimal
Encoding Characters
Encoding Images
Boolean Logic
Python
100
10 in binary means this in decimal.
What is 2?
100
The most frequent letter in the English language is this.
What is the letter "e"?
100
Pixel is an abbreviation of this.
What is picture element?
100
Boolean logic is named after this person.
Who was George Boole?
100
The "**" in Python stands for this mathematical operator.
What is the "exponent" or "power"?
200
10 in decimal will be stored in the computer using this binary number.
What is 1010?
200
This is a disadvantage of padding a binary number with zeroes to represent a letter.
What is wasted storage space?
200
We write the number of bright pixels followed by the number of dark pixels in this encoding method.
What is run length encoding?
200
This gate takes two ones to make a one at the output.
What is the AND gate?
200
print (10/20) will display this on the monitor.
What is 0?
300
Decimal number system uses this number as the base.
What is the number ten?
300
This letter in English probably has the longest Huffmann sequence to represent it.
What is "z"?
300
When we zoom into a picture, it become blurry because of this.
What is the resolution of the image.
300
This gate creates the carry over bit in the binary adder.
What is the AND gate?
300
number = 3 if (number % 2 == 0): print "even" else: print "odd" The output from the above program will be this.
What is "odd"?
400
Binary number system uses this number as the base.
What is the number 2?
400
This letter in English probably uses the shortest Huffmann code to represent it.
What is "e"?
400
This gate takes two inputs. If one or both inputs are ones, the output is a one.
What is the OR gate?
500
This is the maximum number one can represent with 4 bits.
What is 15?
500
This gate creates the SUM bit in a binary adder.
What is the XOR gate?