Data Representation Flashcards
What is a bit?
The smallest measure of data.
How many bits are in a nibble?
4
How many bits are in a byte?
8
How many bytes are in a kilobyte?
1000
How many kilobytes are in a megabyte?
1000
How many megabytes are in a gigabyte?
1000
What is binary?
A number system which uses only two numbers: 1 and 0. It is what all computers use.
Binary increases in what power?
Power of 2 (1, 2, 4, 8, 16, 32, 64 and 128)
In binary, what results from 0+0?
0+0=0
In binary, what results from 1+0?
1+0=1
In binary, what results from 1+1?
1+1=10
What direction is the binary shifted when multiplying?
Left
What direction is the binary shifted when dividing?
Right
How many digits can Hexadecimal use?
16 (0, 1, 2, 3, 4, 5, 6, 7, 8, 9, A, B, C, D, E, F)
How do you convert binary to Hex?
Split the binary code into nibbles. Find out the numerical value of each nibble. If it is over 9, it will be a letter from A-F in alphabetical order.
How do you convert Hex to Denary?
Multiply each digit by 16 and add the results
What is a character?
A number, letter or symbol.
What are the two main character sets?
ASCII and Unicode
What does ASCII stand for?
American Standard Code for Information Interchange
What language is ASCII?
English
How many bits are used per character in ASCII?
7 bits
How many different characters are in ASCII?
128
What is Unicode?
A character set containing international characters.
How do you work out the size of a text file?
Bits per character x number of characters