Lecture 1 Overview And DIP Flashcards
What is the most commonly used numeral system?
Decimal numeral system
How many possible values of a digit do decimal numeral system have?
10
0,1,2,3,4,5,6,7,8,9
What numeral system do computers write and read numbers?
Binary numeral system
How many possible values of a digit do binary numeral system have ?
2
0,1
What do 1k means in binary numeral system?
1024
What is the basic unit of digital data?
Byte (B)
1 byte = ? Bit
8 bits (b)
What is the range and number of bytes of an unsigned 8 bot integer (uint8)?
Range = 0 to 255
Byte = 1
What is the range and number of bytes of an unsigned 16-bit integer (uint16)?
Range = 0 to 65535
Bytes = 2
What is the range and number of bytes of a signed 8-bit integer (int8) ?
Range = -128 to 127
Byte = 1
What is the range and number of bytes of a signed 16-bit integer (int16) ?
Range = -32768 to 32767
Bytes = 2
What do the class [double] means in classes of digital data?
The class double means floating point number with double precision. The number of byte is 8 bytes = 64 bits.
What is the importance of the most significant bit of signed-bit integer?
In signed integer, the most significant bit carries the negative sign
What is the definition of discretisation?
The projection of real world object in continuous-space continuous-value onto an image in discrete-space discrete-value.
Discretisation is a process changing analog data into digital data.
By what method can analog data changes to digital data (I.e. discretisation) ?
- Spatial sampling
- Amplitude quantisation