What are the five data types?
Integer String Boolean Float Character
How many bits are in a nibble?
4 bits
How many bits are in a byte?
8 bits
What are the binary values?
1 & 0
128 64 32 16 8 4 2 1
What is Hexadecimal?
It is base 16.
It’s used to store values that are larger than 9 and less than 16, with 10 - 15 being replaced with A- F, so A is 10, B is 11, C is 12 and so on.
What is Hexadecimal used for in Web pages?
to create colour values, the maximum potential value is 255 as #FFFFFF
What are the benefits of Hexadecimal?
What are the symbols for Boolean algebra?
Not == ¬
And == ^
Or == v
What are the rules for K-Maps and Boolean algebra?
What are the rules of Binary Addition?
What are the rules of Binary Subtraction?
What are the rules of Binary Multiplication?
How do you convert Binary into Hexadecimal?
E.G 10100001
E,G
What is Floating-point arithmetic?
This is where floating point numbers such as decimals are represented in binary.
This is done with the use of a Mantissa and Exponent. The exponent determines the amount of places the decimal place will move and the mantissa represents the number to be converted.
What is the downside to Floating-point arithmetic?
It is near impossible to get an accurate decimal number due to the points getting smaller and smaller
What are the bitwise manipulation operators?
AND = & OR = | XOR = ^ COMPLEMENT = ~ SHIFT R = >> SHIFT L = <
What is the complement operator for bitwise manipulation?
The COMPLEMENT operand simply inverts all the bits so all the ones become zeros and all the zeros become ones.