Data types Flashcards
What are the basic data types?
- Real
- Integer
- String
- Character
- Boolean
What is casting?
- When you convert one data type to another
- E.G: string to integer
Units of digital information
- Bit: represents either a 1 or a 0
- Nibble: 4 bits
- Byte: 8 bits
What are signed binary numberes?
- Unsigned: used to represent positive binary numbers
- Signed: used to represent negative binary numbers
What is the MSB?
- Most significant bit
- If MSB is 0, the number is positive
- If MSB is 1, the number is negative
How is sign and magnitude used?
- The first bit of the binary number is the MSB
- The first bit tells you whether the number is positive or negative
Drawbacks of using sign and magnitude
- The MSB purpose changes from representing a value to representing positive or negative
- Losing the MSB halves the maximum possible size of the number that can be stored
How do you convert from denary to negative binary using two’s complement?
- Start with the absolute value of the number (the positive value)
- Invert all of the bits so the 0’s become 1’s and vice versa
- Add 1
How do you convert from binary to denary using two’s complement?
- Use the first bit as the negative starting point
- The rest of the bits are used to count up from the starting point
- E.G: 1010 - -8 is the starting point. You count up by 2. The denary number is -6
Why do we use hexadecimal?
- A more human-friendly representation of binary-coded values
- More concise as 4 bits is represented by 1 hex value
- Less prone to error
What do you do if you have an overflow in binary addition / subtraction
- Ignore the overflow
- In two’s complement arithmetic, the overflow bit does not contribute to the actual value
What is the mantissa and the exponent?
- Mantissa: the part of the number that holds the actual digits of the value
- Exponent: controls how far the binary point moves, determining the scale of the number
What is fixed point binary?
- The numbers after the decimal point represent the decimal place numbers: 0.5, 0.25, 0.125
How to represent a denary number as floating point binary?
- Convert the number to fixed point binary
- 6.75 = 0110.11 (MSB is 0)
- Move the decimal place to the beginning: 0.11011
- Decimal place moved 3 places so the exponent is 3
- Mantissa: 011011
- Exponent: 011
What is normalising floating point binary and how do you do it?
- Ensures a consisten point of floating point binary representation
- Shift the decimal palce to the left until it begins with 01 or 10
- Adjust the exponent value by how much it was shifted
- E.G: Mantissa is 0.0011, exponent is 0010
- Shift decimal to the right to get 0.11
- Adjust mantissa to 0000
How to add and subtract floating point binary
- Adjust the mantissa so both numbers have the same exponent
- Add / subtract the mantissa as you normally would, exponent will stay the same
- Normalise the number, adjust the exponent accordingally
- Determine the sign value
What are logical shifts?
- The process of moving the bits in a binary number to the left or to the right by a specific amount
What does a left shift and right shift do?
- Left shift: doubles the number
- Right shift: halves the number
What is bitwise manipulation and masks?
- Bitwise manipulation uses logical operations such as AND, OR, XOR to manipulate binary numbers
- Masks are applied to binary numbers to hide / manipulate their values
- E.G: AND mask, the values will be changed if both the binary number and the mask number is a 1
What is a character set and the 2 examples?
- A character set is a list of all of the characters and their associated binary code
- They standardise the binary code for each character
- 2 character sets: ASCII (American Standard Code for Information Interchange) and UNICODE
What is ASCII?
- Uses 7 bits to encode each character, providing for 128 different characters
- Extended ASCII uses 8 bits, allowing 256 different characters
Limitations of ASCII
- Limited to 128 characters as it only uses 7 bits
- Not suitable for multilingual text
- No provision for modern symbols
What is UNICODE?
- Created to be a solution to the limitations of ASCII
- Uses a much larger bit range - up to 32 bits
ASCII vs UNICODE
- ASCII is more storage-efficient, which characters requiring only 7 bits
- UNICODE uses up to 32 bits, hence using more storage
- UNICODE is able to represent many more characters than ASCII