13 - Numbering Systems Flashcards
How many bits as standard ASCII?
7 bits
How many bits as extended ASCII?
8 bits or 1 Byte
How many bits as Unicode?
16 bits or 2 bytes
How many characters allows standard ASCII?
128 chars
How many characters allows extended ASCII?
256 chars
Name the common ASCII codes in mobile forensics for:
- numbers
- uppercase letters
- lowercase letters
- Codes 48-57 (0x30 - 0x39)
- Codes 65 - 90 (0x41 - 0x5A)
- Codes 97 - 122 (0x61 - 0x7A)
Explain Unicode?
Unicode tables are divided into blocks. Uses 2 bytes to represent characters. Has incorporated ASCII characters into its table with the lead byte having the value 00. Example ASCII Character 41 is 0041 in Unicode.
What is Reverse Nibble?
There are two nibbles in a byte. Half a byte is a nibble. Reverse nibbling swaps the position of each nibble. E.g: 98 becomes 89. This is a common value for searching in hexadecimal strings in mobile phones for the lead numbers of the ICCID.
What does ASCII stand for?
American Standard Code for Information Interchange